├── Confined Looping Noise ├── Looping_noise_final_code │ ├── Agent.pde │ ├── Looping_noise_final_code.pde │ └── Noise.pde └── Looping_noise_start_code │ ├── Agent.pde │ └── Looping_noise_start_code.pde ├── Data_visualization ├── Data_visualization.pde └── data │ └── goodreads_library.csv ├── Destroy_a_Square_Prompt ├── Destroy_a_Square_Prompt.pde └── Poly.pde ├── Follow_Path_Sketch ├── Agent.pde ├── Follow_Path_Sketch.pde └── data │ └── A-01.svg ├── Loading_Text_Files_Tutorial ├── Flower.pde ├── Loading_Text_Files_Tutorial.pde └── data │ ├── Believer - Imagine Dragons.txt │ ├── Giants - Dermot Kennedy.txt │ └── Life Goes On - Oliver Tree.txt ├── README.md ├── Secret_messages ├── Secret_messages.pde └── data │ ├── a.svg │ ├── b.svg │ ├── c.svg │ ├── comma.svg │ ├── d.svg │ ├── dot.svg │ ├── e.svg │ ├── exclamation.svg │ ├── f.svg │ ├── g.svg │ ├── h.svg │ ├── i.svg │ ├── j.svg │ ├── k.svg │ ├── l.svg │ ├── m.svg │ ├── n.svg │ ├── o.svg │ ├── p.svg │ ├── q.svg │ ├── question.svg │ ├── quotes.svg │ ├── r.svg │ ├── s.svg │ ├── space.svg │ ├── t.svg │ ├── u.svg │ ├── v.svg │ ├── w.svg │ ├── x.svg │ ├── y.svg │ └── z.svg ├── Select_and_Disrupt_Sketch ├── Path.pde ├── Point.pde ├── Select_and_Disrupt_Sketch.pde └── data │ ├── N.svg │ └── select & distruct intro curves.svg ├── Space_Prompt ├── Agent.pde └── Space_Prompt.pde ├── The Next Next Fidenza ├── The_Next_Next_Fidenza_Prompt │ ├── Agent.pde │ └── The_Next_Next_Fidenza_Prompt.pde └── The_Next_Next_Fidenza_Starting_Code │ ├── Agent.pde │ └── The_Next_Next_Fidenza_Starting_Code.pde ├── points_on_a_circle_YT_IG └── points_on_a_circle_YT_IG.pde ├── recursive_circles ├── Output │ └── test.pdf └── recursive_circles.pde ├── sine_grids └── sine_grids.pde └── wavy_lines └── wavy_lines.pde /Confined Looping Noise/Looping_noise_final_code/Agent.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Confined Looping Noise/Looping_noise_final_code/Agent.pde -------------------------------------------------------------------------------- /Confined Looping Noise/Looping_noise_final_code/Looping_noise_final_code.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Confined Looping Noise/Looping_noise_final_code/Looping_noise_final_code.pde -------------------------------------------------------------------------------- /Confined Looping Noise/Looping_noise_final_code/Noise.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Confined Looping Noise/Looping_noise_final_code/Noise.pde -------------------------------------------------------------------------------- /Confined Looping Noise/Looping_noise_start_code/Agent.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Confined Looping Noise/Looping_noise_start_code/Agent.pde -------------------------------------------------------------------------------- /Confined Looping Noise/Looping_noise_start_code/Looping_noise_start_code.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Confined Looping Noise/Looping_noise_start_code/Looping_noise_start_code.pde -------------------------------------------------------------------------------- /Data_visualization/Data_visualization.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Data_visualization/Data_visualization.pde -------------------------------------------------------------------------------- /Data_visualization/data/goodreads_library.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Data_visualization/data/goodreads_library.csv -------------------------------------------------------------------------------- /Destroy_a_Square_Prompt/Destroy_a_Square_Prompt.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Destroy_a_Square_Prompt/Destroy_a_Square_Prompt.pde -------------------------------------------------------------------------------- /Destroy_a_Square_Prompt/Poly.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Destroy_a_Square_Prompt/Poly.pde -------------------------------------------------------------------------------- /Follow_Path_Sketch/Agent.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Follow_Path_Sketch/Agent.pde -------------------------------------------------------------------------------- /Follow_Path_Sketch/Follow_Path_Sketch.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Follow_Path_Sketch/Follow_Path_Sketch.pde -------------------------------------------------------------------------------- /Follow_Path_Sketch/data/A-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Follow_Path_Sketch/data/A-01.svg -------------------------------------------------------------------------------- /Loading_Text_Files_Tutorial/Flower.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Loading_Text_Files_Tutorial/Flower.pde -------------------------------------------------------------------------------- /Loading_Text_Files_Tutorial/Loading_Text_Files_Tutorial.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Loading_Text_Files_Tutorial/Loading_Text_Files_Tutorial.pde -------------------------------------------------------------------------------- /Loading_Text_Files_Tutorial/data/Believer - Imagine Dragons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Loading_Text_Files_Tutorial/data/Believer - Imagine Dragons.txt -------------------------------------------------------------------------------- /Loading_Text_Files_Tutorial/data/Giants - Dermot Kennedy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Loading_Text_Files_Tutorial/data/Giants - Dermot Kennedy.txt -------------------------------------------------------------------------------- /Loading_Text_Files_Tutorial/data/Life Goes On - Oliver Tree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Loading_Text_Files_Tutorial/data/Life Goes On - Oliver Tree.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/README.md -------------------------------------------------------------------------------- /Secret_messages/Secret_messages.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/Secret_messages.pde -------------------------------------------------------------------------------- /Secret_messages/data/a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/a.svg -------------------------------------------------------------------------------- /Secret_messages/data/b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/b.svg -------------------------------------------------------------------------------- /Secret_messages/data/c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/c.svg -------------------------------------------------------------------------------- /Secret_messages/data/comma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/comma.svg -------------------------------------------------------------------------------- /Secret_messages/data/d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/d.svg -------------------------------------------------------------------------------- /Secret_messages/data/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/dot.svg -------------------------------------------------------------------------------- /Secret_messages/data/e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/e.svg -------------------------------------------------------------------------------- /Secret_messages/data/exclamation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/exclamation.svg -------------------------------------------------------------------------------- /Secret_messages/data/f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/f.svg -------------------------------------------------------------------------------- /Secret_messages/data/g.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/g.svg -------------------------------------------------------------------------------- /Secret_messages/data/h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/h.svg -------------------------------------------------------------------------------- /Secret_messages/data/i.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/i.svg -------------------------------------------------------------------------------- /Secret_messages/data/j.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/j.svg -------------------------------------------------------------------------------- /Secret_messages/data/k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/k.svg -------------------------------------------------------------------------------- /Secret_messages/data/l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/l.svg -------------------------------------------------------------------------------- /Secret_messages/data/m.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/m.svg -------------------------------------------------------------------------------- /Secret_messages/data/n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/n.svg -------------------------------------------------------------------------------- /Secret_messages/data/o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/o.svg -------------------------------------------------------------------------------- /Secret_messages/data/p.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/p.svg -------------------------------------------------------------------------------- /Secret_messages/data/q.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/q.svg -------------------------------------------------------------------------------- /Secret_messages/data/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/question.svg -------------------------------------------------------------------------------- /Secret_messages/data/quotes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/quotes.svg -------------------------------------------------------------------------------- /Secret_messages/data/r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/r.svg -------------------------------------------------------------------------------- /Secret_messages/data/s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/s.svg -------------------------------------------------------------------------------- /Secret_messages/data/space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/space.svg -------------------------------------------------------------------------------- /Secret_messages/data/t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/t.svg -------------------------------------------------------------------------------- /Secret_messages/data/u.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/u.svg -------------------------------------------------------------------------------- /Secret_messages/data/v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/v.svg -------------------------------------------------------------------------------- /Secret_messages/data/w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/w.svg -------------------------------------------------------------------------------- /Secret_messages/data/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/x.svg -------------------------------------------------------------------------------- /Secret_messages/data/y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/y.svg -------------------------------------------------------------------------------- /Secret_messages/data/z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Secret_messages/data/z.svg -------------------------------------------------------------------------------- /Select_and_Disrupt_Sketch/Path.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Select_and_Disrupt_Sketch/Path.pde -------------------------------------------------------------------------------- /Select_and_Disrupt_Sketch/Point.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Select_and_Disrupt_Sketch/Point.pde -------------------------------------------------------------------------------- /Select_and_Disrupt_Sketch/Select_and_Disrupt_Sketch.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Select_and_Disrupt_Sketch/Select_and_Disrupt_Sketch.pde -------------------------------------------------------------------------------- /Select_and_Disrupt_Sketch/data/N.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Select_and_Disrupt_Sketch/data/N.svg -------------------------------------------------------------------------------- /Select_and_Disrupt_Sketch/data/select & distruct intro curves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Select_and_Disrupt_Sketch/data/select & distruct intro curves.svg -------------------------------------------------------------------------------- /Space_Prompt/Agent.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Space_Prompt/Agent.pde -------------------------------------------------------------------------------- /Space_Prompt/Space_Prompt.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/Space_Prompt/Space_Prompt.pde -------------------------------------------------------------------------------- /The Next Next Fidenza/The_Next_Next_Fidenza_Prompt/Agent.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/The Next Next Fidenza/The_Next_Next_Fidenza_Prompt/Agent.pde -------------------------------------------------------------------------------- /The Next Next Fidenza/The_Next_Next_Fidenza_Prompt/The_Next_Next_Fidenza_Prompt.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/The Next Next Fidenza/The_Next_Next_Fidenza_Prompt/The_Next_Next_Fidenza_Prompt.pde -------------------------------------------------------------------------------- /The Next Next Fidenza/The_Next_Next_Fidenza_Starting_Code/Agent.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/The Next Next Fidenza/The_Next_Next_Fidenza_Starting_Code/Agent.pde -------------------------------------------------------------------------------- /The Next Next Fidenza/The_Next_Next_Fidenza_Starting_Code/The_Next_Next_Fidenza_Starting_Code.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/The Next Next Fidenza/The_Next_Next_Fidenza_Starting_Code/The_Next_Next_Fidenza_Starting_Code.pde -------------------------------------------------------------------------------- /points_on_a_circle_YT_IG/points_on_a_circle_YT_IG.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/points_on_a_circle_YT_IG/points_on_a_circle_YT_IG.pde -------------------------------------------------------------------------------- /recursive_circles/Output/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/recursive_circles/Output/test.pdf -------------------------------------------------------------------------------- /recursive_circles/recursive_circles.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/recursive_circles/recursive_circles.pde -------------------------------------------------------------------------------- /sine_grids/sine_grids.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/sine_grids/sine_grids.pde -------------------------------------------------------------------------------- /wavy_lines/wavy_lines.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbyhadeel/GenArtTutorials/HEAD/wavy_lines/wavy_lines.pde --------------------------------------------------------------------------------