This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //RGBzoom | |
| //6/14/20 | |
| //Elliot Shapiro | |
| //https://itsgeometrical.tumblr.com/post/621844995729670144/rgb-zoom | |
| int frame,max_frames,FR; | |
| int cue1_length = 50; | |
| int cue2_length = 200; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Chordrigal | |
| //6/3/20 | |
| //Elliot Shapiro | |
| //https://itsgeometrical.tumblr.com/post/621484154387939328/chordrigal-inspired-by-caleb-ogg-i-originally | |
| float radius; | |
| int num_of_lines; | |
| float line_stroke_weight,outline_stroke_weight; | |
| //[line:0-lines][point:0,1][value:0=x,1=y]; | |
| float[][][] points; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Nees and Bees | |
| //6/3/20 | |
| //Elliot Shapiro | |
| //https://gist.github.com/teshapiro/2d808e11365260aa5560ca1f9f79a924 | |
| int frame,max_frames; | |
| int rows,columns; | |
| float stroke_weight,box_side_length,box_spacing; | |
| float start_x,start_y; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Spirographs | |
| //6/1/20 | |
| //Elliot Shapiro | |
| //https://itsgeometrical.tumblr.com/post/619908174617706496/spirograph-1-more-source-code | |
| //Pattern labeled "pasma" inspired by Piter Pasma (@piterpasma on insta) | |
| //Patterns labeled "iso_hedron1" and "iso_hedron2" inspired by Caleb Ogg (@iso.hedron on insta) | |
| int frame_rate = 25; | |
| int max_frames; | |
| int frame = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Hatch Lava Lamp | |
| //05/26/20 | |
| //Elliot Shapiro | |
| //https://itsgeometrical.tumblr.com/post/619202997353955328/hatch-lava-lamp-animation-of-and-image-by-antoine | |
| int frame = 0; | |
| int max_frames = 200; | |
| int frameRate = 25; | |
| PGraphics bg1,bg2,bg3; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Box Fountain | |
| //5/17/20 | |
| //Elliot Shapiro | |
| //https://itsgeometrical.tumblr.com/post/618725725214769152/fountain-inspired-by-gengeomergence-on-instagram | |
| int max_frames = 125; | |
| int frame = 0; | |
| int frame_rate = 25; | |
| int chunk_size = 12; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Lanterns | |
| //made 5/1/20 | |
| //by Elliot Shapiro | |
| //https://itsgeometrical.tumblr.com/post/618224954925776896/lanternsmore-first-time-using-something-from-a | |
| int FR = 25; | |
| int frame = 0; | |
| int max_frames = 500; | |
| int lon_samples = 50; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Colorado | |
| //5/12/20 | |
| //Elliot Shapiro | |
| //https://itsgeometrical.tumblr.com/post/617963581825318912/colorado-inspired-by-beesandbombss-c-is-for | |
| int FR = 25; | |
| int frame = 0; | |
| int max_frames = 150; | |
| int frames_of_rest = 20; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Low Poly Squiggles | |
| //Elliot Shapiro | |
| //5/1/20 | |
| //https://itsgeometrical.tumblr.com/post/617014474519527424/low-poly-squigglesmore-i-could-have-used-more | |
| int FR = 25; | |
| int frame = 0; | |
| int max_frames = 75; | |
| int samples = 500; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Sector Z (Cube Cover) | |
| //Animated version of No. 532 by Daily Minimal | |
| //made 4/29/20 | |
| //by Elliot Shapiro | |
| //https://itsgeometrical.tumblr.com/post/616756684652789760/sector-z-animated-version-of-no-532-by | |
| int FR = 25; | |
| int frame = 0; | |
| int max_frames = 200; | |
| int loop = 0; |
NewerOlder