Skip to content

Commit

Permalink
Fixed big images
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronpenne committed Oct 24, 2018
1 parent 67df073 commit f08d697
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions concentric_wobble/concentric_wobble.pyde
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,14 @@ def draw():
stroke(60, 7, 86)
angles = [x+counter/2 for x in angles_1]
offset = [x*sin(counter) for x in offset_1]
draw_concentric_wobble(1, 50, int(w*0.4), 0.01, offset, angles, w/2, h/2) #1*w/3
draw_concentric_wobble(1, 50, int(w*0.4), 0.01, offset, angles_1, w/2, h/2) #1*w/3

# stroke(60, 7, 86)
# angles = [x-counter/2 for x in angles_2]
# offset = [x*cos(counter) for x in offset_2]
# draw_concentric_wobble(2, 50, int(w*0.4), 0.01, offset, angles, w/2, h/2) # 2*w/3
angles = [x+counter/2 for x in angles_2]
offset = [x*sin(counter) for x in offset_2]
draw_concentric_wobble(1, 50, int(w*0.4), 0.01, offset, angles_2, w/2, h/2) #1*w/3


helper.save_frame_timestamp('concentric_wobble', timestamp, random_seed)
#helper.save_frame_timestamp('concentric_wobble', timestamp, random_seed)

# Save memory by closing image, just look at it in the file system
# if (w > 1000) or (h > 1000):
Expand Down
Binary file added concentric_wobble/images/double.mp4
Binary file not shown.
Binary file added concentric_wobble/images/single.mp4
Binary file not shown.
Binary file added concentric_wobble/images/still_double_019.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added concentric_wobble/images/still_double_108.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added concentric_wobble/images/still_double_150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added concentric_wobble/images/still_single.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f08d697

Please sign in to comment.