├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── Rakefile ├── contributed ├── README.md ├── Rakefile ├── animator.rb ├── arc_tesselation.rb ├── ball_of_confusion.rb ├── bezier_playground.rb ├── cairo_tiling.rb ├── chladni.rb ├── circle_collision.rb ├── circle_growth.rb ├── circles.rb ├── decagon_grid.rb ├── drawolver.rb ├── elegant_ball.rb ├── empathy.rb ├── etienne.rb ├── fading.rb ├── feather_fractal.rb ├── fern.rb ├── fibonacci_sphere.rb ├── fire.rb ├── flight_patterns.rb ├── fraction_sums.rb ├── fractions.rb ├── getting_started.rb ├── grapher.rb ├── gravity.rb ├── jwishy.rb ├── lenny_explorer.rb ├── library │ ├── branch │ │ └── branch.rb │ ├── branch3D │ │ ├── branch3D.rb │ │ └── rotator.rb │ ├── circle │ │ ├── circle.rb │ │ └── lib │ │ │ ├── circumcircle.rb │ │ │ ├── t_points.rb │ │ │ └── triangle_point.rb │ ├── lenny │ │ ├── lenny.rb │ │ └── lib │ │ │ ├── boundary.rb │ │ │ ├── circle.rb │ │ │ ├── line2d.rb │ │ │ └── path.rb │ ├── my_dot │ │ └── my_dot.rb │ ├── palette │ │ └── palette.rb │ ├── particles │ │ ├── lib │ │ │ ├── attractor.rb │ │ │ └── particle.rb │ │ └── particles.rb │ └── rain_drops │ │ └── rain_drops.rb ├── mandelbrot.rb ├── mushrooms.rb ├── mycelium.rb ├── mycelium_box.rb ├── orbit.rb ├── pentaflake.rb ├── polyhedrons.rb ├── quadraticvertex.rb ├── raining.rb ├── re_sample.rb ├── recursive_pentagon.rb ├── reflection.rb ├── ribbon_doodle.rb ├── sierpinski_carpet.rb ├── spiky_orb.rb ├── spirograph.rb ├── superformula.rb ├── terreno.rb ├── tree.rb ├── truchet_tiling.rb ├── web_of_stars.rb └── worley_noise.rb ├── examples ├── WOVNS │ ├── README.md │ ├── cross_hatch.rb │ ├── data │ │ ├── circles.svg │ │ └── java_args.txt │ ├── gaussian.rb │ ├── geometric_grid4.rb │ ├── plaid.rb │ ├── random_grid.rb │ ├── repeats.rb │ ├── stripes.rb │ ├── svg_input.rb │ ├── svg_output.rb │ └── wave.rb ├── buffer │ └── buffer.rb └── grid_method │ ├── 25_squares.rb │ ├── Rakefile │ ├── data │ ├── background.png │ └── mask.png │ ├── full_screen.rb │ ├── generative_arrow_rotate.rb │ ├── hex_variation.rb │ ├── luciernagas.rb │ └── plain.rb ├── external_library ├── gem │ ├── cf3 │ │ ├── README.md │ │ ├── Rakefile │ │ ├── accident.rb │ │ ├── alhambra.rb │ │ ├── bar_code.rb │ │ ├── city.rb │ │ ├── creature.rb │ │ ├── dark_star.rb │ │ ├── data │ │ │ └── java_args.txt │ │ ├── dragon.rb │ │ ├── escher.rb │ │ ├── fern.rb │ │ ├── hex_tube.rb │ │ ├── isosceles.rb │ │ ├── levy.rb │ │ ├── pcr.rb │ │ ├── rubystar.rb │ │ ├── sierpinski.rb │ │ ├── spiral.rb │ │ ├── star.rb │ │ ├── tree.rb │ │ ├── tree4.rb │ │ ├── vine.rb │ │ ├── xcross.rb │ │ └── y.rb │ ├── geomerative │ │ ├── README.md │ │ ├── Rakefile │ │ ├── blobby_trail.rb │ │ ├── data │ │ │ ├── FreeSans.ttf │ │ │ ├── Impact Label Licence.txt │ │ │ ├── Impact Label Reversed.ttf │ │ │ ├── ReplicaBold.ttf │ │ │ ├── bot1.svg │ │ │ ├── lion.svg │ │ │ ├── mapaAzimutal.svg │ │ │ └── ruby.svg │ │ ├── hello_polygonize.rb │ │ ├── hello_svg_to_pdf.rb │ │ ├── hello_world.rb │ │ ├── jruby_merge.rb │ │ ├── library │ │ │ ├── f_agent │ │ │ │ └── f_agent.rb │ │ │ └── font_agent │ │ │ │ └── font_agent.rb │ │ ├── physics_type.rb │ │ ├── rectangle_boundary_test.rb │ │ ├── rotate_first_letter.rb │ │ ├── rshape_contains.rb │ │ ├── shape_boundary_test.rb │ │ ├── solid_text.rb │ │ ├── text_on_geomerative_path.rb │ │ ├── typo_deform.rb │ │ ├── typo_extra_bright.rb │ │ └── typo_merge.rb │ ├── joonsrenderer │ │ ├── README.md │ │ ├── Rakefile │ │ ├── animation.rb │ │ ├── basic.rb │ │ └── media_demo.rb │ ├── mdarray │ │ ├── Rakefile │ │ ├── data │ │ │ └── java_args.txt │ │ ├── frame_of_reference.rb │ │ ├── game_of_life.rb │ │ └── geometry │ │ │ ├── geometry.rb │ │ │ └── lib │ │ │ ├── cylinder.rb │ │ │ ├── matrix4.rb │ │ │ └── plane.rb │ ├── pbox2d │ │ ├── README.md │ │ ├── Rakefile │ │ ├── bumpy_surface_noise.rb │ │ ├── collision_listening.rb │ │ ├── data │ │ │ └── java_args.txt │ │ ├── distance_joint │ │ │ ├── boundary.rb │ │ │ ├── distance_joint.rb │ │ │ ├── pair.rb │ │ │ ├── particle.rb │ │ │ └── particle_system.rb │ │ ├── lib │ │ │ ├── boundary.rb │ │ │ ├── box.rb │ │ │ ├── custom_listener.rb │ │ │ ├── custom_shape.rb │ │ │ ├── particle.rb │ │ │ ├── particle_system.rb │ │ │ ├── shape_system.rb │ │ │ └── surface.rb │ │ ├── liquid_fun_test.rb │ │ ├── liquidy.rb │ │ ├── mouse_joint │ │ │ ├── boundary.rb │ │ │ ├── box.rb │ │ │ ├── dummy_spring.rb │ │ │ ├── mouse_joint.rb │ │ │ └── spring.rb │ │ ├── polygons.rb │ │ ├── quick_test.rb │ │ ├── revolute_joint │ │ │ ├── box.rb │ │ │ ├── particle.rb │ │ │ ├── particle_system.rb │ │ │ ├── revolute_joint.rb │ │ │ └── windmill.rb │ │ └── test_contact │ │ │ ├── README.md │ │ │ ├── lib │ │ │ ├── boundary.rb │ │ │ ├── custom_listener.rb │ │ │ └── particle.rb │ │ │ └── test_contact.rb │ ├── ruby_wordcram │ │ ├── README.md │ │ ├── Rakefile │ │ ├── callbacks_in_sketch.rb │ │ ├── clickable_words.rb │ │ ├── data │ │ │ ├── LiberationSerif-Regular.ttf │ │ │ ├── MINYN___.TTF │ │ │ ├── heart.png │ │ │ ├── kari-the-elephant.html │ │ │ ├── kari-the-elephant.txt │ │ │ ├── letters.svg │ │ │ ├── names.txt │ │ │ ├── usconst.txt │ │ │ └── yinyang.png │ │ ├── first_names.rb │ │ ├── first_names_reset.rb │ │ ├── from_web_page.rb │ │ ├── fruits.rb │ │ ├── get_words_while_running.rb │ │ ├── hello_world.rb │ │ ├── letter_stair_case.rb │ │ ├── placing_words.rb │ │ ├── placing_words_by_image_mask.rb │ │ ├── render_to_buffer.rb │ │ ├── render_to_pdf.rb │ │ ├── render_to_svg.rb │ │ ├── style_specific_words.rb │ │ ├── us_constitution.rb │ │ ├── weight_your_own_words.rb │ │ ├── yin_yang_mots.rb │ │ └── yin_yang_words.rb │ ├── skatolo │ │ ├── README.md │ │ ├── Rakefile │ │ ├── button_group.rb │ │ ├── buttons.rb │ │ ├── jwishy.rb │ │ ├── slider.rb │ │ ├── slider_group.rb │ │ └── text_box.rb │ └── toxiclibs │ │ ├── README.md │ │ ├── color_utils │ │ ├── Rakefile │ │ ├── color_theme.rb │ │ ├── data │ │ │ └── color_theme.rb │ │ └── palette_generator.rb │ │ ├── geometry │ │ ├── Rakefile │ │ ├── boolean_shapes.rb │ │ ├── circle_resolution.rb │ │ ├── data │ │ │ ├── mona-lisa-voronoi.png │ │ │ └── monalisa.jpg │ │ ├── lenny_explorer.rb │ │ ├── library │ │ │ └── lenny │ │ │ │ ├── lenny.rb │ │ │ │ └── lib │ │ │ │ ├── boundary.rb │ │ │ │ └── path.rb │ │ ├── model_align.rb │ │ ├── monalisa_voronoi.rb │ │ ├── voronoi1.rb │ │ └── voronoi2.rb │ │ ├── mesh │ │ ├── Rakefile │ │ ├── inflate_mesh.rb │ │ ├── mesh_align.rb │ │ ├── povmesh │ │ │ ├── data │ │ │ │ └── texture.png │ │ │ ├── ftest.rb │ │ │ ├── mesh_align.rb │ │ │ └── tentacle.rb │ │ ├── spherical_harmonics_mesh.rb │ │ ├── voxelize_mesh.rb │ │ └── voxtest.rb │ │ ├── noise │ │ ├── Rakefile │ │ ├── simplex_noise.md │ │ ├── simplex_noise_3_d.rb │ │ ├── simplex_noise_test.rb │ │ ├── simplex_noise_texture.rb │ │ └── simplex_noise_wave.rb │ │ ├── physics │ │ ├── README.md │ │ ├── attract_repel │ │ │ ├── Rakefile │ │ │ ├── attract_repel.rb │ │ │ ├── attractor.rb │ │ │ └── particle.rb │ │ ├── force_directed_graph │ │ │ ├── cluster.rb │ │ │ ├── force_directed_graph.rb │ │ │ └── node.rb │ │ ├── simple_cluster │ │ │ ├── cluster.rb │ │ │ ├── node.rb │ │ │ └── simple_cluster.rb │ │ ├── simple_spring │ │ │ ├── particle.rb │ │ │ └── simple_spring.rb │ │ ├── soft_body │ │ │ ├── library │ │ │ │ └── blanket │ │ │ │ │ ├── blanket.rb │ │ │ │ │ ├── connection.rb │ │ │ │ │ └── particle.rb │ │ │ └── soft_body_square_adapted.rb │ │ └── soft_string │ │ │ ├── chain.rb │ │ │ ├── particle.rb │ │ │ └── soft_string_pendulum.rb │ │ ├── simulation │ │ ├── ca_ornament.rb │ │ ├── data │ │ │ └── ti_yong.png │ │ ├── gray_scott_image.rb │ │ └── gray_scott_tone_map.rb │ │ ├── verlet_physics │ │ ├── README.md │ │ ├── attraction2d.rb │ │ ├── crash_test.rb │ │ ├── data │ │ │ ├── ReplicaBold.ttf │ │ │ └── audi.stl │ │ ├── physics_type.rb │ │ ├── simple_cluster │ │ │ ├── cluster.rb │ │ │ ├── node.rb │ │ │ └── simple_cluster.rb │ │ └── soft_body │ │ │ ├── library │ │ │ ├── blanket.rb │ │ │ └── lib │ │ │ │ ├── blanket.rb │ │ │ │ ├── connection.rb │ │ │ │ └── particle.rb │ │ │ └── soft_body_square_adapted.rb │ │ └── volume_utils │ │ ├── data │ │ ├── fract003.png │ │ └── rock_texture2.png │ │ ├── implicit.rb │ │ ├── tentacle.rb │ │ └── volumetric_cup.rb └── java │ ├── LiquidFunProcessing │ ├── README.md │ ├── data │ │ ├── SourceCodePro-Regular.ttf │ │ ├── java_args.txt │ │ └── sprite.png │ ├── liquid_fun_dam_break.rb │ └── wave_machine.rb │ ├── PixelFlow │ ├── README.md │ ├── Rakefile │ ├── anti_aliasing.rb │ ├── bloom_demo.rb │ ├── data │ │ ├── AlienCorridor.frag │ │ ├── AlienCorridor_BufA.frag │ │ ├── AlienCorridor_BufB.frag │ │ ├── AlienCorridor_BufC.frag │ │ ├── AlienCorridor_BufD.frag │ │ ├── ExpansiveReactionDiffusion.frag │ │ ├── ExpansiveReactionDiffusion_BufA.frag │ │ ├── ExpansiveReactionDiffusion_BufB.frag │ │ ├── ExpansiveReactionDiffusion_BufC.frag │ │ ├── ExpansiveReactionDiffusion_BufD.frag │ │ ├── MengerSponge.frag │ │ ├── Seascape.frag │ │ ├── fluid_basic.json │ │ ├── fluid_first_blood.json │ │ ├── grayscott.frag │ │ ├── java_args.txt │ │ ├── mc_escher.jpg │ │ ├── raymarching_primitives.frag │ │ ├── recursive_voronoi.frag │ │ ├── recursive_voronoi.glsl │ │ ├── render.frag │ │ ├── skylight_demo_scene.mtl │ │ ├── skylight_demo_scene.obj │ │ ├── voronoi_distances.frag │ │ └── wet_stone.frag │ ├── flow_field_particles.rb │ ├── fluid_basic.rb │ ├── fluid_basic_lambda.rb │ ├── fluid_first_blood.rb │ ├── fluid_minimal.rb │ ├── geometry_grid.rb │ ├── gloptical_flow_capture.rb │ ├── image_processing_filter.rb │ ├── optical_flow_capture.rb │ ├── reaction_diffusion.rb │ ├── recursive_voronoi_geometry.rb │ ├── sampling_fibonacci.rb │ ├── sampling_halton.rb │ ├── sampling_poisson2d.rb │ ├── sampling_poisson3d.rb │ ├── shadertoy_alien_corridor.rb │ ├── shadertoy_expansive_reaction_diffusion.rb │ ├── shadertoy_menger.rb │ ├── shadertoy_raymarching_primitives.rb │ ├── shadertoy_seascape.rb │ ├── shadertoy_voronoi_distances.rb │ ├── shadertoy_wet_stone.rb │ ├── skylight_basic.rb │ └── skylight_basic_gui.rb │ ├── au_utilities │ └── ag0094hyc.rb │ ├── carnivore │ ├── carnivore1.rb │ └── monkstone │ │ └── CarnivoreListener.java │ ├── controlP5 │ ├── README.md │ ├── button_group.rb │ ├── control_listener.rb │ ├── control_sliders.rb │ ├── data │ │ ├── default.json │ │ └── saved.json │ ├── json.rb │ ├── library │ │ └── gui │ │ │ └── gui.rb │ ├── radio.rb │ ├── scrollable_list.rb │ └── test_gui.rb │ ├── generativedesign │ ├── mesh_custom.rb │ └── node_spring_attractor.rb │ ├── gicentreUtils │ ├── chart.rb │ ├── color_table.rb │ └── easing.rb │ ├── grafica │ ├── README.md │ ├── data │ │ ├── OktoberfestVSGermanElections.csv │ │ └── expectancy.csv │ ├── default_plot.rb │ ├── exponential_trend.rb │ ├── life_expectancy.rb │ ├── multiple_panels.rb │ └── oktoberfest_example.rb │ ├── guido │ └── slider.rb │ ├── handy │ ├── README.md │ ├── Rakefile │ ├── data │ │ ├── HumorSans-18.vlw │ │ └── HumorSans-32.vlw │ ├── hachure_styles.rb │ ├── handy_test.rb │ ├── library │ │ └── balls │ │ │ └── balls.rb │ ├── preset_style_demo.rb │ ├── preset_styles.rb │ └── vertex_3d_test.rb │ ├── hemesh │ ├── README.md │ ├── Rakefile │ ├── danzer.rb │ ├── data │ │ ├── square-001.png │ │ ├── square-002.png │ │ ├── square-003.png │ │ ├── square-004.png │ │ ├── square-005.png │ │ ├── square-006.png │ │ ├── square-007.png │ │ ├── square-008.png │ │ ├── square-009.png │ │ ├── square-010.png │ │ ├── square-011.png │ │ ├── square-012.png │ │ ├── square-013.png │ │ ├── square-014.png │ │ ├── square-015.png │ │ ├── square-016.png │ │ ├── square-017.png │ │ ├── square-018.png │ │ ├── square-019.png │ │ ├── square-020.png │ │ ├── square-021.png │ │ ├── square-022.png │ │ ├── square-023.png │ │ ├── square-024.png │ │ ├── square-025.png │ │ ├── square-026.png │ │ ├── square-027.png │ │ ├── square-028.png │ │ ├── square-029.png │ │ ├── square-030.png │ │ ├── square-031.png │ │ ├── square-032.png │ │ ├── square-033.png │ │ ├── square-034.png │ │ ├── square-035.png │ │ ├── square-036.png │ │ ├── square-037.png │ │ ├── square-038.png │ │ ├── square-039.png │ │ ├── square-040.png │ │ ├── square-041.png │ │ ├── square-042.png │ │ ├── square-043.png │ │ ├── square-044.png │ │ ├── square-045.png │ │ ├── square-046.png │ │ ├── square-047.png │ │ ├── square-048.png │ │ ├── square-049.png │ │ ├── square-050.png │ │ ├── square-051.png │ │ ├── square-052.png │ │ ├── square-053.png │ │ ├── square-054.png │ │ ├── square-055.png │ │ ├── square-056.png │ │ ├── square-057.png │ │ ├── square-058.png │ │ ├── square-059.png │ │ ├── square-060.png │ │ ├── square-061.png │ │ ├── square-062.png │ │ ├── square-063.png │ │ ├── square-064.png │ │ ├── square-065.png │ │ ├── square-066.png │ │ ├── square-067.png │ │ ├── square-068.png │ │ ├── square-069.png │ │ ├── square-070.png │ │ ├── square-071.png │ │ ├── square-072.png │ │ ├── square-073.png │ │ ├── square-074.png │ │ ├── square-075.png │ │ ├── square-076.png │ │ ├── square-077.png │ │ ├── square-078.png │ │ ├── square-079.png │ │ ├── square-080.png │ │ ├── square-081.png │ │ ├── square-082.png │ │ ├── square-083.png │ │ ├── square-084.png │ │ ├── square-085.png │ │ ├── square-086.png │ │ ├── square-087.png │ │ ├── square-088.png │ │ ├── square-089.png │ │ ├── square-090.png │ │ ├── square-091.png │ │ ├── square-092.png │ │ ├── square-093.png │ │ ├── square-094.png │ │ ├── square-095.png │ │ ├── square-096.png │ │ ├── square-097.png │ │ ├── square-098.png │ │ ├── square-099.png │ │ ├── square-100.png │ │ ├── square-101.png │ │ ├── square-102.png │ │ ├── square-103.png │ │ ├── square-104.png │ │ ├── square-105.png │ │ ├── square-106.png │ │ ├── square-107.png │ │ ├── square-108.png │ │ ├── square-109.png │ │ ├── square-110.png │ │ ├── square-111.png │ │ ├── square-112.png │ │ ├── square-113.png │ │ ├── square-114.png │ │ ├── square-115.png │ │ ├── square-116.png │ │ ├── square-117.png │ │ ├── square-118.png │ │ ├── square-119.png │ │ ├── square-120.png │ │ ├── square-121.png │ │ ├── square-122.png │ │ ├── square-123.png │ │ ├── square-124.png │ │ ├── square-125.png │ │ ├── square-126.png │ │ ├── square-127.png │ │ ├── square-128.png │ │ ├── square-129.png │ │ ├── square-130.png │ │ ├── square-131.png │ │ ├── square-132.png │ │ ├── square-133.png │ │ ├── square-134.png │ │ ├── square-135.png │ │ ├── square-136.png │ │ ├── square-137.png │ │ ├── square-138.png │ │ ├── square-139.png │ │ ├── square-140.png │ │ ├── square-141.png │ │ ├── square-142.png │ │ ├── square-143.png │ │ ├── square-144.png │ │ ├── square-145.png │ │ ├── square-146.png │ │ ├── square-147.png │ │ ├── square-148.png │ │ ├── square-149.png │ │ ├── square-150.png │ │ ├── square-151.png │ │ ├── square-152.png │ │ ├── square-153.png │ │ ├── square-154.png │ │ ├── square-155.png │ │ ├── square-156.png │ │ ├── square-157.png │ │ ├── square-158.png │ │ ├── square-159.png │ │ ├── square-160.png │ │ ├── square-161.png │ │ ├── square-162.png │ │ ├── square-163.png │ │ ├── square-164.png │ │ ├── square-165.png │ │ ├── square-166.png │ │ ├── square-167.png │ │ ├── square-168.png │ │ ├── square-169.png │ │ ├── square-170.png │ │ ├── square-171.png │ │ ├── square-172.png │ │ ├── square-173.png │ │ ├── square-174.png │ │ ├── square-175.png │ │ ├── square-176.png │ │ ├── square-177.png │ │ ├── square-178.png │ │ ├── square-179.png │ │ ├── square-180.png │ │ ├── square-181.png │ │ ├── square-182.png │ │ ├── square-183.png │ │ ├── square-184.png │ │ ├── square-185.png │ │ ├── square-186.png │ │ ├── square-187.png │ │ ├── square-188.png │ │ ├── square-189.png │ │ ├── square-190.png │ │ ├── square-191.png │ │ ├── square-192.png │ │ ├── square-193.png │ │ ├── square-194.png │ │ ├── square-195.png │ │ ├── square-196.png │ │ ├── square-197.png │ │ ├── square-198.png │ │ ├── square-199.png │ │ ├── square-200.png │ │ ├── square-201.png │ │ ├── square-202.png │ │ ├── square-203.png │ │ ├── square-204.png │ │ ├── square-205.png │ │ ├── square-206.png │ │ ├── square-207.png │ │ ├── square-208.png │ │ ├── square-209.png │ │ ├── square-210.png │ │ ├── square-211.png │ │ ├── square-212.png │ │ ├── square-213.png │ │ ├── square-214.png │ │ ├── square-215.png │ │ ├── square-216.png │ │ ├── square-217.png │ │ ├── square-218.png │ │ ├── square-219.png │ │ ├── square-220.png │ │ ├── square-221.png │ │ ├── square-222.png │ │ ├── square-223.png │ │ ├── square-224.png │ │ ├── square-225.png │ │ ├── square-226.png │ │ ├── square-227.png │ │ ├── square-228.png │ │ ├── square-229.png │ │ ├── square-230.png │ │ ├── square-231.png │ │ ├── square-232.png │ │ ├── square-233.png │ │ ├── square-234.png │ │ ├── square-235.png │ │ ├── square-236.png │ │ ├── square-237.png │ │ ├── square-238.png │ │ ├── square-239.png │ │ ├── square-240.png │ │ ├── square-241.png │ │ ├── square-242.png │ │ ├── square-243.png │ │ ├── square-244.png │ │ ├── square-245.png │ │ ├── square-246.png │ │ ├── square-247.png │ │ ├── square-248.png │ │ ├── square-249.png │ │ ├── square-250.png │ │ ├── square-251.png │ │ ├── square-252.png │ │ ├── square-253.png │ │ ├── square-254.png │ │ ├── square-255.png │ │ ├── square-256.png │ │ ├── square-257.png │ │ ├── square-258.png │ │ ├── square-259.png │ │ ├── square-260.png │ │ ├── square-261.png │ │ ├── square-262.png │ │ ├── square-263.png │ │ ├── square-264.png │ │ ├── square-265.png │ │ ├── square-266.png │ │ ├── square-267.png │ │ ├── square-268.png │ │ ├── square-269.png │ │ ├── square-270.png │ │ ├── square-271.png │ │ ├── square-272.png │ │ ├── square-273.png │ │ ├── square-274.png │ │ ├── square-275.png │ │ ├── square-276.png │ │ ├── square-277.png │ │ ├── square-278.png │ │ ├── square-279.png │ │ ├── square-280.png │ │ ├── square-281.png │ │ ├── square-282.png │ │ ├── square-283.png │ │ ├── square-284.png │ │ ├── square-285.png │ │ ├── square-286.png │ │ ├── square-287.png │ │ ├── square-288.png │ │ ├── square-289.png │ │ ├── square-290.png │ │ ├── square-291.png │ │ ├── square-292.png │ │ ├── square-293.png │ │ ├── square-294.png │ │ ├── square-295.png │ │ ├── square-296.png │ │ ├── square-297.png │ │ ├── square-298.png │ │ ├── square-299.png │ │ ├── square-300.png │ │ ├── square-301.png │ │ ├── square-302.png │ │ ├── square-303.png │ │ ├── square-304.png │ │ ├── square-305.png │ │ ├── square-306.png │ │ ├── square-307.png │ │ ├── square-308.png │ │ ├── square-309.png │ │ ├── square-310.png │ │ ├── square-311.png │ │ ├── square-312.png │ │ ├── square-313.png │ │ ├── square-314.png │ │ ├── square-315.png │ │ ├── square-316.png │ │ ├── square-317.png │ │ ├── square-318.png │ │ ├── square-319.png │ │ ├── square-320.png │ │ ├── square-321.png │ │ ├── square-322.png │ │ ├── square-323.png │ │ ├── square-324.png │ │ ├── square-325.png │ │ ├── square-326.png │ │ ├── square-327.png │ │ ├── square-328.png │ │ ├── square-329.png │ │ ├── square-330.png │ │ ├── square-331.png │ │ ├── square-332.png │ │ ├── square-333.png │ │ ├── square-334.png │ │ ├── square-335.png │ │ ├── square-336.png │ │ ├── square-337.png │ │ ├── square-338.png │ │ ├── square-339.png │ │ ├── square-340.png │ │ ├── square-341.png │ │ ├── square-342.png │ │ ├── square-343.png │ │ ├── square-344.png │ │ ├── square-345.png │ │ ├── square-346.png │ │ ├── square-347.png │ │ ├── square-348.png │ │ ├── square-349.png │ │ ├── square-350.png │ │ ├── square-351.png │ │ ├── square-352.png │ │ ├── square-353.png │ │ ├── square-354.png │ │ ├── square-355.png │ │ ├── square-356.png │ │ ├── square-357.png │ │ ├── square-358.png │ │ ├── square-359.png │ │ ├── square-360.png │ │ └── twin_iso.rb │ ├── hec_creator_model_view.rb │ ├── hec_from_network.rb │ ├── hec_isosurface_image.rb │ ├── hes_catmull_clark.rb │ ├── hes_doo_sabin.rb │ ├── mesh_selection.rb │ ├── mirror.rb │ ├── progress_reporter.rb │ ├── simplify.rb │ ├── slicer.rb │ ├── spray_nozzle.rb │ ├── triangulation_3d.rb │ ├── twin_iso.rb │ ├── voronoi_example.rb │ ├── voronoi_on_sphere.rb │ ├── wblut_circles.rb │ ├── wblut_complex.rb │ └── weaire_phelan.rb │ ├── hype │ ├── README.md │ ├── Rakefile │ ├── attractor.rb │ ├── color_field.rb │ ├── color_gradient.rb │ ├── color_pool.rb │ ├── color_pool_wovns.rb │ ├── color_presets.rb │ ├── colorist.rb │ ├── data │ │ ├── arrow.svg │ │ ├── cog_lg.svg │ │ ├── cog_sm.svg │ │ ├── gradient.jpg │ │ ├── java_args.txt │ │ ├── phil_pai.jpg │ │ ├── tex1.png │ │ ├── tex2.png │ │ └── tex3.png │ ├── grid_layout.rb │ ├── h_orbiter.rb │ ├── h_oscillator.rb │ ├── h_rotate.rb │ ├── h_sprite.rb │ ├── hype_swarm.rb │ ├── magnetic_field.rb │ ├── method_chaining.rb │ ├── polar_layout.rb │ ├── proximity.rb │ ├── random_trigger.rb │ ├── rotate_gear.rb │ ├── tween_example.rb │ └── tween_lambda_example.rb │ ├── image_processing │ ├── README.md │ ├── basics.rb │ ├── data │ │ ├── example.jpg │ │ └── yaleBfaces.jpg │ ├── dithering.rb │ ├── glitch_example.rb │ ├── halftone_example.rb │ ├── lut_example.rb │ ├── sharpen.rb │ └── stacker.rb │ ├── minim │ ├── adsr_example.rb │ ├── create_instrument.rb │ ├── data │ │ ├── BD.mp3 │ │ ├── BD.wav │ │ ├── CHH.wav │ │ ├── SD.wav │ │ ├── groove.mp3 │ │ └── serif.vlw │ ├── drum_machine.rb │ ├── library │ │ ├── sine_instrument │ │ │ └── sine_instrument.rb │ │ ├── tick │ │ │ ├── lib │ │ │ │ ├── rect.rb │ │ │ │ └── tick.rb │ │ │ └── tick.rb │ │ └── tone_instrument │ │ │ └── tone_instrument.rb │ ├── loop.rb │ ├── play_file.rb │ └── trigger.rb │ ├── pgs │ ├── README.md │ ├── contour_map.rb │ ├── library │ │ └── vector_list │ │ │ └── vector_list.rb │ └── mink_shear.rb │ ├── proscene │ ├── alternative_use.rb │ └── basic_use.rb │ ├── queasycam │ ├── README.md │ ├── advanced.rb │ └── basic.rb │ └── video_export │ ├── basic.rb │ └── using_pgraphics.rb ├── favicon.ico └── processing_app ├── basics ├── arrays │ ├── array.rb │ ├── array_2d.rb │ ├── array_objects.rb │ ├── custom_array.rb │ └── parallel_array.rb ├── camera │ ├── arcball_perspektiv.rb │ ├── kmove_eye.rb │ ├── move_eye.rb │ ├── perspective.rb │ ├── perspektiv.rb │ └── perspektiv2.rb ├── color │ ├── Rakefile │ ├── blend_color.rb │ ├── brightness.rb │ ├── color_wheel.rb │ ├── creating.rb │ ├── creating2.rb │ ├── hue.rb │ ├── linear_gradient.rb │ ├── radial_gradient.rb │ ├── reading │ │ ├── data │ │ │ └── cait.jpg │ │ └── reading.rb │ ├── relativity.rb │ ├── saturation.rb │ └── wave_gradient.rb ├── control │ ├── Rakefile │ ├── conditionals1.rb │ ├── conditionals2.rb │ ├── embedded_iteration.rb │ ├── iteration.rb │ └── logical_operators.rb ├── form │ ├── Rakefile │ ├── bezier.rb │ ├── bezier_ellipse.rb │ ├── brick_tower.rb │ ├── cubic_grid.rb │ ├── data │ │ ├── Rakefile │ │ ├── characters_strings.rb │ │ ├── datatype_conversion.rb │ │ ├── integers_floats.rb │ │ ├── pi-1million.txt │ │ ├── true_false.rb │ │ └── variable_scope.rb │ ├── icosahedra.rb │ ├── icosahedron_shape.rb │ ├── lib │ │ └── icosahedron.rb │ ├── pie_chart.rb │ ├── points_lines.rb │ ├── primitives.rb │ ├── regular_polygon.rb │ ├── rgb_cube.rb │ ├── shape_primitives.rb │ ├── shape_transform.rb │ ├── star.rb │ ├── toroid.rb │ ├── triangle_strip.rb │ └── vertices.rb ├── image │ ├── Rakefile │ ├── alphamask.rb │ ├── background_image.rb │ ├── colored_extrusion.rb │ ├── create_image.rb │ ├── data │ │ ├── PT_anim0000.gif │ │ ├── PT_anim0001.gif │ │ ├── PT_anim0002.gif │ │ ├── PT_anim0003.gif │ │ ├── PT_anim0004.gif │ │ ├── PT_anim0005.gif │ │ ├── PT_anim0006.gif │ │ ├── PT_anim0007.gif │ │ ├── PT_anim0008.gif │ │ ├── PT_anim0009.gif │ │ ├── PT_anim0010.gif │ │ ├── PT_anim0011.gif │ │ ├── construct.jpg │ │ ├── eames.jpg │ │ ├── jelly.jpg │ │ ├── mask.jpg │ │ ├── milan_rubbish.jpg │ │ ├── teddy.gif │ │ ├── test.jpg │ │ ├── wash.jpg │ │ └── ystone08.jpg │ ├── extrusion.rb │ ├── load_display_image.rb │ ├── pointillism.rb │ ├── request_image.rb │ ├── request_parallel.rb │ ├── sprite.rb │ ├── transparency.rb │ └── truchet_tiling.rb ├── input │ ├── Rakefile │ ├── bounding_box.rb │ ├── clock.rb │ ├── constrain.rb │ ├── easing.rb │ ├── keyboard.rb │ ├── keyboard_functions.rb │ ├── milliseconds.rb │ ├── mouse_1d.rb │ ├── mouse_2d.rb │ ├── mouse_functions.rb │ ├── mouse_press.rb │ ├── mouse_signals.rb │ └── storing_input.rb ├── lights │ ├── Rakefile │ ├── directional.rb │ ├── lights1.rb │ ├── lights2.rb │ ├── reflection.rb │ └── spot.rb ├── math │ ├── .gitignore │ ├── Rakefile │ ├── additive_wave.rb │ ├── arctangent.rb │ ├── distance1.rb │ ├── distance2.rb │ ├── double_random.rb │ ├── graphing_2_d_equation.rb │ ├── increment_decrement.rb │ ├── interpolate.rb │ ├── modulo.rb │ ├── noise4_tap.rb │ ├── noise_1_d.rb │ ├── noise_2_d.rb │ ├── noise_3_d.rb │ ├── noise_image.rb │ ├── noise_wave.rb │ ├── operator_precedence.rb │ ├── polar_to_cartesian.rb │ ├── random.rb │ ├── random2.rb │ ├── random_gaussian.rb │ ├── sine.rb │ ├── sine_cosine.rb │ └── sine_wave.rb ├── modules │ ├── euler_ball.rb │ ├── euler_integration.rb │ ├── module.rb │ └── module_two.rb ├── objects │ ├── Rakefile │ ├── composite_objects.rb │ ├── inheritance.rb │ ├── inheritance_two.rb │ ├── library │ │ └── eggring │ │ │ ├── egg.rb │ │ │ ├── egg_ring.rb │ │ │ ├── eggring.rb │ │ │ └── ring.rb │ ├── multiple_constructors.rb │ ├── objects.rb │ ├── polymorphism.rb │ ├── polymorphism2.rb │ ├── shapes │ │ ├── circle.rb │ │ ├── circle2.rb │ │ ├── shape.rb │ │ └── square.rb │ └── struct.rb ├── shape │ ├── Rakefile │ ├── data │ │ ├── bot1.svg │ │ ├── rocket.mtl │ │ ├── rocket.obj │ │ ├── rocket.png │ │ ├── uk.svg │ │ └── usa-wikipedia.svg │ ├── disable_style.rb │ ├── get_child.rb │ ├── load_display_obj.rb │ ├── load_display_shape.rb │ ├── load_display_svg.rb │ ├── scale_shape.rb │ └── shape_vertices.rb ├── structure │ ├── Rakefile │ ├── coordinates.rb │ ├── create_graphics.rb │ ├── functions.rb │ ├── loop.rb │ ├── noloop.rb │ ├── recursion1.rb │ ├── recursion2.rb │ ├── redraw.rb │ ├── setup_draw.rb │ ├── statements_comments.rb │ └── width_height.rb ├── textures │ ├── Rakefile │ ├── data │ │ └── berlin-1.jpg │ ├── texture1.rb │ ├── texture2.rb │ ├── texture3.rb │ └── texture_cube.rb ├── transform │ ├── Rakefile │ ├── arm.rb │ ├── bird.rb │ ├── birds.rb │ ├── cubes_in_cube.rb │ ├── lib │ │ ├── bird.rb │ │ └── cube.rb │ ├── rotate.rb │ ├── rotate1.rb │ ├── rotate_push_pop.rb │ ├── rotate_x_y.rb │ ├── scale.rb │ ├── translate.rb │ └── triangle_flower.rb ├── typography │ ├── Rakefile │ ├── explore_fonts.rb │ ├── letters.rb │ └── words.rb └── web │ ├── Rakefile │ ├── embedded_links.rb │ └── loading_images.rb ├── demos ├── graphics │ ├── README.md │ ├── Rakefile │ ├── bezier_patch.rb │ ├── data │ │ ├── frag.glsl │ │ ├── java_args.txt │ │ ├── mercury.jpg │ │ ├── planet.jpg │ │ ├── starfield.jpg │ │ ├── sun.jpg │ │ └── vert.glsl │ ├── experiment6.rb │ ├── planets.rb │ ├── trefoil.rb │ └── wiggling.rb ├── performance │ ├── README.md │ ├── Rakefile │ ├── cubic_grid_retained.rb │ ├── data │ │ ├── frag.glsl │ │ ├── java_args.txt │ │ └── vert.glsl │ ├── esfera.rb │ ├── mesh_tweening.rb │ └── text_rendering.rb └── tests │ ├── no_background_test.rb │ ├── redraw_test.rb │ ├── resize_test.rb │ └── specs_test.rb ├── library ├── boids │ └── boids_example.rb ├── control_panel │ ├── button.rb │ ├── checkbox.rb │ ├── menu.rb │ └── slider.rb ├── dxf │ └── simple_export.rb ├── fastmath │ └── clock.rb ├── file_chooser │ ├── README.md │ ├── data │ │ ├── Message.png │ │ ├── data.cfdg │ │ ├── einstein.png │ │ ├── haddock.cfdg │ │ └── original.png │ ├── gray.rb │ ├── pixellator.rb │ ├── resizable.rb │ └── select_file.rb ├── library_proxy │ ├── Rakefile │ ├── deadgrid_events.rb │ ├── key_event.rb │ ├── library │ │ ├── dead_grid │ │ │ └── dead_grid.rb │ │ ├── mouse_thing │ │ │ └── mouse_thing.rb │ │ ├── my_library │ │ │ └── my_library.rb │ │ └── proxy_library │ │ │ └── proxy_library.rb │ ├── mouse_event_demo.rb │ └── test_proxy.rb ├── minim │ ├── README.md │ ├── filter_example.rb │ ├── frequency_modulation.rb │ ├── sequence_sound.rb │ └── synthesize_sound.rb ├── net │ ├── HTTPClient.rb │ ├── http_client.rb │ ├── shared_canvas_client.rb │ └── shared_canvas_server.rb ├── pdf │ ├── .gitignore │ ├── complex_3D.rb │ ├── large_page.rb │ ├── many_frames.rb │ ├── many_pages.rb │ ├── many_pdfs.rb │ └── one_frame.rb ├── slider │ ├── README.md │ ├── Rakefile │ ├── multi_slider_demo.rb │ ├── slider_demo.rb │ ├── slider_example.rb │ └── slider_simple.rb ├── sound │ ├── README.md │ ├── Rakefile │ ├── analysis │ │ ├── Rakefile │ │ ├── audio_wave_form.rb │ │ ├── data │ │ │ └── beat.aiff │ │ ├── fft_spectrum.rb │ │ └── peak_amplitude.rb │ ├── data │ │ ├── 1.aif │ │ ├── 2.aif │ │ ├── 3.aif │ │ ├── 4.aif │ │ ├── 5.aif │ │ └── vibraphon.aiff │ ├── effects │ │ ├── Rakefile │ │ ├── band_pass_filter.rb │ │ ├── data │ │ │ └── vibraphon.aiff │ │ ├── high_pass_filter.rb │ │ ├── low_pass_filter.rb │ │ ├── reverberation.rb │ │ └── variable_delay.rb │ ├── envelope │ │ └── envelope.rb │ ├── io │ │ └── audio_input.rb │ ├── noise │ │ ├── Rakefile │ │ ├── brown_noise.rb │ │ ├── noise_spectrum.rb │ │ ├── pink_noise.rb │ │ └── white_noise.rb │ ├── oscillators │ │ ├── Rakefile │ │ ├── oscillator_spectrum.rb │ │ ├── pulse_width.rb │ │ ├── saw_wave.rb │ │ ├── sine_cluster.rb │ │ ├── sine_wave.rb │ │ ├── square_wave.rb │ │ └── triangle_wave.rb │ └── soundfile │ │ ├── Rakefile │ │ ├── audio_sample_manipulation.rb │ │ ├── data │ │ ├── 1.aif │ │ ├── 2.aif │ │ ├── 3.aif │ │ ├── 4.aif │ │ ├── 5.aif │ │ ├── beat.aiff │ │ └── vibraphon.aiff │ │ ├── jumble_sound_file.rb │ │ ├── keyboard.rb │ │ ├── sampler.rb │ │ └── simple_playback.rb ├── svg │ ├── .gitignore │ ├── circle_and_rectangles.rb │ ├── direct.rb │ ├── display_first.rb │ └── sunflower_pattern.rb ├── vecmath │ ├── README.md │ ├── arcball │ │ ├── Rakefile │ │ ├── arcball_box.rb │ │ ├── arcball_radius.rb │ │ ├── arcball_shape.rb │ │ ├── constrain.rb │ │ ├── custom_constrain.rb │ │ ├── cylinder_axis.rb │ │ ├── cylinder_axis_vec3D.rb │ │ └── library │ │ │ └── axes │ │ │ └── axes.rb │ ├── vec2d │ │ ├── README.md │ │ ├── Rakefile │ │ ├── aabb_test.rb │ │ ├── acceleration_with_vectors.rb │ │ ├── basic_circumcircle_sketch.rb │ │ ├── bouncing_ball.rb │ │ ├── circle_collision.rb │ │ ├── circles.rb │ │ ├── circumcircle.md │ │ ├── circumcircle_sketch.rb │ │ ├── circumcircle_sketch2.rb │ │ ├── data │ │ │ ├── java_args.txt │ │ │ ├── sprite.png │ │ │ └── texture.png │ │ ├── flocking.rb │ │ ├── lenny_explorer.rb │ │ ├── library │ │ │ ├── circle │ │ │ │ ├── circle.rb │ │ │ │ └── lib │ │ │ │ │ ├── circumcircle.rb │ │ │ │ │ ├── math_point.rb │ │ │ │ │ └── points.rb │ │ │ ├── circle2 │ │ │ │ ├── circle2.rb │ │ │ │ └── lib │ │ │ │ │ ├── circumcircle.rb │ │ │ │ │ ├── math_point.rb │ │ │ │ │ └── points.rb │ │ │ ├── flock │ │ │ │ └── flock.rb │ │ │ ├── lenny │ │ │ │ ├── lenny.rb │ │ │ │ └── lib │ │ │ │ │ ├── boundary.rb │ │ │ │ │ ├── circle.rb │ │ │ │ │ ├── line2d.rb │ │ │ │ │ ├── path.rb │ │ │ │ │ └── rect.rb │ │ │ ├── particle │ │ │ │ └── particle.rb │ │ │ ├── simple_circle │ │ │ │ ├── circle.rb │ │ │ │ ├── lib │ │ │ │ │ ├── circumcircle.rb │ │ │ │ │ ├── particle.rb │ │ │ │ │ ├── simple_points.rb │ │ │ │ │ ├── t_points.rb │ │ │ │ │ └── triangle_point.rb │ │ │ │ └── simple_circle.rb │ │ │ ├── tile │ │ │ │ └── tile.rb │ │ │ └── verlet_chain │ │ │ │ ├── lib │ │ │ │ ├── verlet_ball.rb │ │ │ │ └── verlet_stick.rb │ │ │ │ └── verlet_chain.rb │ │ ├── morph.rb │ │ ├── particle_system_pshape.rb │ │ ├── penrose.rb │ │ ├── reflection1.rb │ │ ├── seeking_neural.rb │ │ ├── simple_particle_system.rb │ │ ├── soft_body.rb │ │ ├── toxi_aabb_test.rb │ │ ├── vector_math.rb │ │ ├── verlet_integration.rb │ │ └── wiggle_pshape.rb │ └── vec3d │ │ ├── Rakefile │ │ ├── drawolver.rb │ │ ├── frame_of_reference.rb │ │ ├── hilbert_fractal.rb │ │ ├── library │ │ ├── geometry │ │ │ ├── geometry.rb │ │ │ └── lib │ │ │ │ ├── cylinder.rb │ │ │ │ ├── mat4.rb │ │ │ │ ├── parallel_mat4.rb │ │ │ │ └── plane.rb │ │ └── hilbert │ │ │ └── hilbert.rb │ │ ├── note.txt │ │ ├── retained_menger.rb │ │ └── terrain.rb ├── vector_utils │ ├── data │ │ └── capitals.csv │ ├── fibonacci.rb │ ├── lat_lon.rb │ ├── spiral.rb │ └── vogel.rb └── video │ ├── README.md │ ├── capture │ ├── README.md │ ├── Rakefile │ ├── ascii_capture.rb │ ├── background_subtraction.rb │ ├── black_white_capture.rb │ ├── data │ │ ├── UniversLTStd-Light-48.vlw │ │ ├── bwfrag.glsl │ │ └── droste.glsl │ ├── droste.rb │ ├── mirror.rb │ ├── mirror2.rb │ └── test_capture.rb │ └── movie │ ├── Rakefile │ ├── data │ ├── transit.mkv │ └── transit.mov │ ├── loop.rb │ ├── pixelate.rb │ ├── reverse.rb │ ├── scratch.rb │ └── speed.rb └── topics ├── advanced_data ├── README ├── Rakefile ├── counting_words.rb ├── data │ ├── Georgia.ttf │ ├── Merriweather-Light.ttf │ ├── a000 copy.jpg │ ├── a001 copy.jpg │ ├── a002 copy.jpg │ ├── a003 copy.jpg │ ├── a004 copy.jpg │ ├── a005 copy.jpg │ ├── a006 copy.jpg │ ├── a007 copy.jpg │ ├── a008 copy.jpg │ ├── a009 copy.jpg │ ├── a010 copy.jpg │ ├── a011 copy.jpg │ ├── a012 copy.jpg │ ├── a013 copy.jpg │ ├── a014 copy.jpg │ ├── a015 copy.jpg │ ├── a016 copy.jpg │ ├── a017 copy.jpg │ ├── a018 copy.jpg │ ├── a019 copy.jpg │ ├── a020 copy.jpg │ ├── a021 copy.jpg │ ├── a022 copy.jpg │ ├── a023 copy.jpg │ ├── a024 copy.jpg │ ├── a025 copy.jpg │ ├── a026 copy.jpg │ ├── a027 copy.jpg │ ├── a028 copy.jpg │ ├── a029 copy.jpg │ ├── a030 copy.jpg │ ├── a031 copy.jpg │ ├── a032 copy.jpg │ ├── a033 copy.jpg │ ├── a034 copy.jpg │ ├── a035 copy.jpg │ ├── a036 copy.jpg │ ├── a037 copy.jpg │ ├── a038 copy.jpg │ ├── a039 copy.jpg │ ├── a040 copy.jpg │ ├── a041 copy.jpg │ ├── a042 copy.jpg │ ├── a043 copy.jpg │ ├── a044 copy.jpg │ ├── a045 copy.jpg │ ├── a046 copy.jpg │ ├── a047 copy.jpg │ ├── a048 copy.jpg │ ├── a049 copy.jpg │ ├── a050 copy.jpg │ ├── a051 copy.jpg │ ├── a052 copy.jpg │ ├── a053 copy.jpg │ ├── a054 copy.jpg │ ├── a055 copy.jpg │ ├── a056 copy.jpg │ ├── a057 copy.jpg │ ├── a058 copy.jpg │ ├── a059 copy.jpg │ ├── a060 copy.jpg │ ├── a061 copy.jpg │ ├── a062 copy.jpg │ ├── a063 copy.jpg │ ├── a064 copy.jpg │ ├── a065 copy.jpg │ ├── a066 copy.jpg │ ├── a067 copy.jpg │ ├── a068 copy.jpg │ ├── a069 copy.jpg │ ├── a070 copy.jpg │ ├── a071 copy.jpg │ ├── a072 copy.jpg │ ├── a073 copy.jpg │ ├── a074 copy.jpg │ ├── a075 copy.jpg │ ├── a076 copy.jpg │ ├── a077 copy.jpg │ ├── a078 copy.jpg │ ├── a079 copy.jpg │ ├── a080 copy.jpg │ ├── a081 copy.jpg │ ├── a082 copy.jpg │ ├── a083 copy.jpg │ ├── a084 copy.jpg │ ├── a085 copy.jpg │ ├── a086 copy.jpg │ ├── a087 copy.jpg │ ├── a088 copy.jpg │ ├── a089 copy.jpg │ ├── a090 copy.jpg │ ├── a091 copy.jpg │ ├── a092 copy.jpg │ ├── a093 copy.jpg │ ├── a094 copy.jpg │ ├── a095 copy.jpg │ ├── a096 copy.jpg │ ├── a097 copy.jpg │ ├── a098 copy.jpg │ ├── a099 copy.jpg │ ├── a100 copy.jpg │ ├── a101 copy.jpg │ ├── a102 copy.jpg │ ├── a103 copy.jpg │ ├── a104 copy.jpg │ ├── a105 copy.jpg │ ├── a106 copy.jpg │ ├── a107 copy.jpg │ ├── a108 copy.jpg │ ├── a109 copy.jpg │ ├── a110 copy.jpg │ ├── a111 copy.jpg │ ├── a112 copy.jpg │ ├── a113 copy.jpg │ ├── a114 copy.jpg │ ├── a115 copy.jpg │ ├── data.csv │ ├── data.json │ ├── data.xml │ ├── data.yml │ ├── data_struct.yml │ ├── dracula.txt │ ├── frankenstein.txt │ └── pi-1million.txt ├── library │ ├── bubble │ │ └── bubble.rb │ ├── bubble_struct_yaml │ │ ├── bubble_struct_yaml.rb │ │ └── lib │ │ │ ├── bubble.rb │ │ │ ├── bubble_data.rb │ │ │ ├── bubble_reader.rb │ │ │ ├── bubble_struct.rb │ │ │ └── bubble_writer.rb │ ├── bubble_yaml │ │ ├── bubble_yaml.rb │ │ └── lib │ │ │ ├── bubble.rb │ │ │ ├── bubble_data.rb │ │ │ ├── bubble_reader.rb │ │ │ └── bubble_writer.rb │ └── word │ │ └── word.rb ├── load_save_XML.rb ├── load_save__struct_yaml.rb ├── load_save_json.rb ├── load_save_table.rb ├── load_save_yaml.rb ├── noaa_weather.rb ├── regex.rb ├── threads.rb ├── threads_two.rb ├── visualizingpi.rb └── word_frequency.rb ├── advanced_shader ├── Rakefile ├── blue_marble.rb ├── data │ ├── CloudFrag.glsl │ ├── CloudVert.glsl │ ├── EarthFrag.glsl │ ├── EarthVert.glsl │ ├── JuliaDE-double.glsl │ ├── JuliaDE.glsl │ ├── MandelbrotDE-double.glsl │ ├── MandelbrotDE.glsl │ ├── earthbump1k.jpg │ ├── earthcloudmap.jpg │ ├── earthcloudmaptrans.jpg │ ├── earthmap1k.jpg │ └── earthspec1k.jpg └── julia_brot.rb ├── animation ├── README.txt ├── animated_sprite.rb ├── data │ ├── PT_Shifty_0000.gif │ ├── PT_Shifty_0001.gif │ ├── PT_Shifty_0002.gif │ ├── PT_Shifty_0003.gif │ ├── PT_Shifty_0004.gif │ ├── PT_Shifty_0005.gif │ ├── PT_Shifty_0006.gif │ ├── PT_Shifty_0007.gif │ ├── PT_Shifty_0008.gif │ ├── PT_Shifty_0009.gif │ ├── PT_Shifty_0010.gif │ ├── PT_Shifty_0011.gif │ ├── PT_Shifty_0012.gif │ ├── PT_Shifty_0013.gif │ ├── PT_Shifty_0014.gif │ ├── PT_Shifty_0015.gif │ ├── PT_Shifty_0016.gif │ ├── PT_Shifty_0017.gif │ ├── PT_Shifty_0018.gif │ ├── PT_Shifty_0019.gif │ ├── PT_Shifty_0020.gif │ ├── PT_Shifty_0021.gif │ ├── PT_Shifty_0022.gif │ ├── PT_Shifty_0023.gif │ ├── PT_Shifty_0024.gif │ ├── PT_Shifty_0025.gif │ ├── PT_Shifty_0026.gif │ ├── PT_Shifty_0027.gif │ ├── PT_Shifty_0028.gif │ ├── PT_Shifty_0029.gif │ ├── PT_Shifty_0030.gif │ ├── PT_Shifty_0031.gif │ ├── PT_Shifty_0032.gif │ ├── PT_Shifty_0033.gif │ ├── PT_Shifty_0034.gif │ ├── PT_Shifty_0035.gif │ ├── PT_Shifty_0036.gif │ ├── PT_Shifty_0037.gif │ ├── PT_Teddy_0000.gif │ ├── PT_Teddy_0001.gif │ ├── PT_Teddy_0002.gif │ ├── PT_Teddy_0003.gif │ ├── PT_Teddy_0004.gif │ ├── PT_Teddy_0005.gif │ ├── PT_Teddy_0006.gif │ ├── PT_Teddy_0007.gif │ ├── PT_Teddy_0008.gif │ ├── PT_Teddy_0009.gif │ ├── PT_Teddy_0010.gif │ ├── PT_Teddy_0011.gif │ ├── PT_Teddy_0012.gif │ ├── PT_Teddy_0013.gif │ ├── PT_Teddy_0014.gif │ ├── PT_Teddy_0015.gif │ ├── PT_Teddy_0016.gif │ ├── PT_Teddy_0017.gif │ ├── PT_Teddy_0018.gif │ ├── PT_Teddy_0019.gif │ ├── PT_Teddy_0020.gif │ ├── PT_Teddy_0021.gif │ ├── PT_Teddy_0022.gif │ ├── PT_Teddy_0023.gif │ ├── PT_Teddy_0024.gif │ ├── PT_Teddy_0025.gif │ ├── PT_Teddy_0026.gif │ ├── PT_Teddy_0027.gif │ ├── PT_Teddy_0028.gif │ ├── PT_Teddy_0029.gif │ ├── PT_Teddy_0030.gif │ ├── PT_Teddy_0031.gif │ ├── PT_Teddy_0032.gif │ ├── PT_Teddy_0033.gif │ ├── PT_Teddy_0034.gif │ ├── PT_Teddy_0035.gif │ ├── PT_Teddy_0036.gif │ ├── PT_Teddy_0037.gif │ ├── PT_Teddy_0038.gif │ ├── PT_Teddy_0039.gif │ ├── PT_Teddy_0040.gif │ ├── PT_Teddy_0041.gif │ ├── PT_Teddy_0042.gif │ ├── PT_Teddy_0043.gif │ ├── PT_Teddy_0044.gif │ ├── PT_Teddy_0045.gif │ ├── PT_Teddy_0046.gif │ ├── PT_Teddy_0047.gif │ ├── PT_Teddy_0048.gif │ ├── PT_Teddy_0049.gif │ ├── PT_Teddy_0050.gif │ ├── PT_Teddy_0051.gif │ ├── PT_Teddy_0052.gif │ ├── PT_Teddy_0053.gif │ ├── PT_Teddy_0054.gif │ ├── PT_Teddy_0055.gif │ ├── PT_Teddy_0056.gif │ ├── PT_Teddy_0057.gif │ ├── PT_Teddy_0058.gif │ ├── PT_Teddy_0059.gif │ ├── PT_anim0000.gif │ ├── PT_anim0001.gif │ ├── PT_anim0002.gif │ ├── PT_anim0003.gif │ ├── PT_anim0004.gif │ ├── PT_anim0005.gif │ ├── PT_anim0006.gif │ ├── PT_anim0007.gif │ ├── PT_anim0008.gif │ ├── PT_anim0009.gif │ ├── PT_anim0010.gif │ └── PT_anim0011.gif └── sequential.rb ├── cellular_automata ├── game_of_life.rb ├── library │ ├── cell │ │ └── cell.rb │ └── simple_cell │ │ └── simple_cell.rb ├── spore1.rb ├── spore2.rb ├── wolfram_ca_110.rb ├── wolfram_ca_30.rb └── wolfram_ca_60.rb ├── create_shapes ├── begin_end_contour.rb ├── data │ └── sprite.png ├── group_pshape.rb ├── library │ ├── particle │ │ └── particle_system.rb │ ├── polygon │ │ └── polygon.rb │ ├── star │ │ └── star.rb │ └── wiggler │ │ └── wiggler.rb ├── particle_system_pshape.rb ├── path_pshape.rb ├── polygon_pshape_oo3.rb ├── polygon_pshape_oop.rb ├── polygon_pshape_oop2.rb ├── polygon_shape.rb ├── primitive_pshape.rb └── wiggle_pshape.rb ├── drawing ├── continuous_lines.rb ├── pattern.rb ├── pulses.rb └── scribble_plotter.rb ├── effects ├── data │ └── red_smoke.jpg └── lens.rb ├── file_io ├── data │ └── positions.txt ├── load_file1.rb ├── load_file2.rb ├── save_frames.rb ├── save_one_image.rb └── tile_images.rb ├── filters └── pixelate │ ├── data │ ├── shader.glsl │ └── texture.jpg │ └── pixelate.rb ├── fractals └── henon_explorer.rb ├── gui ├── button.rb ├── data │ ├── seedBottom.jpg │ └── seedTop.jpg ├── handles.rb ├── rollover.rb └── scrollbar.rb ├── image_processing ├── Rakefile ├── blending.rb ├── blur.rb ├── brightness.rb ├── convolution.rb ├── data │ ├── eames.jpg │ ├── frontier.jpg │ ├── java_args.txt │ ├── layer1.jpg │ ├── layer2.jpg │ ├── moon-wide.jpg │ ├── moon.jpg │ ├── sea.jpg │ └── ystone08.jpg ├── edge_detection.rb ├── explode.rb ├── extrusion.rb ├── histogram.rb ├── linear_image.rb ├── pixel_array.rb └── zoom.rb ├── lsystems ├── Rakefile ├── chequer.rb ├── csplant.rb ├── cstest.rb ├── david_tour.rb ├── doily.rb ├── koch_fractal.rb ├── library │ ├── cs_grammar │ │ └── cs_grammar.rb │ ├── grammar │ │ └── grammar.rb │ ├── koch │ │ └── koch.rb │ ├── penrose │ │ └── penrose.rb │ ├── snowflake │ │ └── snowflake.rb │ └── stochastic_grammar │ │ └── stochastic_grammar.rb ├── mandelbrot.rb ├── moore_curve.rb ├── mpeano.rb ├── peano.rb ├── penrose.rb ├── penrose_snowflake.rb ├── pentagonal.rb ├── sierpinski_arrowhead.rb ├── snake_kolam.rb ├── stochastic_test.rb └── three_d_tree.rb ├── motion ├── Rakefile ├── bounce.rb ├── bouncy_bubbles.rb ├── brownian.rb ├── circle_collision.rb ├── cubes_in_cube.rb ├── data │ └── java_args.txt ├── library │ ├── cube │ │ └── cube.rb │ └── ground │ │ └── ground.rb ├── linear.rb ├── moving_on_curves.rb ├── puff.rb ├── reflection1.rb └── reflection2.rb ├── ruby_hook ├── hooky.rb └── subclass.rb ├── shaders ├── README.md ├── Rakefile ├── blur_filter.rb ├── bw_shader.rb ├── conway.rb ├── data │ ├── FishEye.glsl │ ├── GlossyFrag.glsl │ ├── GlossyVert.glsl │ ├── Texture01.jpg │ ├── Texture02.jpg │ ├── ToonFrag.glsl │ ├── ToonVert.glsl │ ├── blur.glsl │ ├── bwfrag.glsl │ ├── conway.glsl │ ├── cubemapfrag.glsl │ ├── cubemapvert.glsl │ ├── deform.glsl │ ├── displaceFrag.glsl │ ├── displaceVert.glsl │ ├── edges.glsl │ ├── edgesfrag.glsl │ ├── frag.glsl │ ├── grayscott2.frag │ ├── lachoy.jpg │ ├── landscape.glsl │ ├── leaves.jpg │ ├── mandelbub.glsl │ ├── mask.glsl │ ├── metaballs.glsl │ ├── metaballs_two.glsl │ ├── monjori.glsl │ ├── nebula.glsl │ ├── penrose.jpg │ ├── render2.frag │ ├── scroller.glsl │ ├── sep_blur.glsl │ ├── sierpinski.glsl │ ├── sigmoids.glsl │ ├── tex1.jpg │ ├── vert.glsl │ └── voronoi_distance.glsl ├── deform.rb ├── edge_detect.rb ├── edge_filter.rb ├── glossy_fish_eye.rb ├── glsl_heightmap_noise.rb ├── image_filtering │ ├── Rakefile │ ├── bicubic.rb │ ├── bilateral.rb │ ├── contrast_sat_bright.rb │ ├── data │ │ ├── bicubic.glsl │ │ ├── bilateral.glsl │ │ ├── dithering.glsl │ │ ├── fish_eye.glsl │ │ ├── gaussianBlur.glsl │ │ ├── noise.png │ │ ├── pixelate.glsl │ │ ├── shader.glsl │ │ ├── texture.jpg │ │ └── threshold.glsl │ ├── dithering.rb │ ├── fisheye_pincushion.rb │ ├── metaballs.rb │ └── pixelate.rb ├── image_mask.rb ├── in_sketch_shader.rb ├── infinite_tiling.rb ├── landscape.rb ├── mandelbub.rb ├── metaballs.rb ├── metaballs_two.rb ├── monjori.rb ├── nebula.rb ├── reaction_diffusion.rb ├── sep_blur.rb ├── sierpinski.rb ├── sigmoids.rb ├── toon_shading.rb ├── video_filtering │ ├── README.md │ ├── Rakefile │ ├── barrel_blur_chroma.rb │ ├── black_white_capture.rb │ ├── data │ │ ├── barrel_blur.glsl │ │ ├── bwfrag.glsl │ │ ├── edge_detect.glsl │ │ ├── iss.mov │ │ ├── shader.glsl │ │ └── steinberg.glsl │ ├── edge_detect_capture.rb │ ├── ntsc.rb │ └── steinberg.rb └── voronoi_distance.rb ├── simulate ├── README ├── chain.rb ├── data │ ├── java_args.txt │ ├── texture.gif │ └── texture.png ├── flocking.rb ├── library │ └── flock │ │ └── flock.rb ├── multiple_particle_systems.rb ├── simple_particle_system.rb ├── smoke_particle_system.rb ├── spring.rb └── springs.rb ├── texture ├── data │ ├── berlin-1.jpg │ └── world32k.jpg ├── texture_cube.rb ├── texture_sphere.rb └── texture_sphere_control.rb └── vectors ├── acceleration_with_vectors.rb ├── bouncing_ball.rb ├── cubes_in_cube.rb ├── library └── cube │ └── cube.rb └── vector_math.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | *.rbc 3 | *~ 4 | *.swp 5 | .rvmrc 6 | -------------------------------------------------------------------------------- /contributed/library/circle/circle.rb: -------------------------------------------------------------------------------- 1 | require_relative 'lib/circumcircle' 2 | require_relative 'lib/triangle_point' 3 | require_relative 'lib/t_points' 4 | -------------------------------------------------------------------------------- /contributed/library/lenny/lenny.rb: -------------------------------------------------------------------------------- 1 | require_relative 'lib/circle' 2 | require_relative 'lib/boundary' 3 | require_relative 'lib/path' 4 | require_relative 'lib/line2d' 5 | -------------------------------------------------------------------------------- /contributed/library/particles/particles.rb: -------------------------------------------------------------------------------- 1 | 2 | require_relative 'lib/particle' 3 | require_relative 'lib/attractor' 4 | -------------------------------------------------------------------------------- /examples/WOVNS/data/java_args.txt: -------------------------------------------------------------------------------- 1 | -XX:InlineSmallCode=500 -Xms1024m -Xmx2048m 2 | -------------------------------------------------------------------------------- /examples/grid_method/data/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/examples/grid_method/data/background.png -------------------------------------------------------------------------------- /examples/grid_method/data/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/examples/grid_method/data/mask.png -------------------------------------------------------------------------------- /external_library/gem/cf3/README.md: -------------------------------------------------------------------------------- 1 | ### CF3 juby_art and ruby-processing context free art 2 | These examples require installation of the 'cf3' gem version 1.0+. 3 | ```bash 4 | gem install cf3 5 | ``` 6 | -------------------------------------------------------------------------------- /external_library/gem/cf3/data/java_args.txt: -------------------------------------------------------------------------------- 1 | -XX:InlineSmallCode=500 -Xms256m -Xmx2g -XX:NewSize=64m -XX:MaxNewSize=64m 2 | -------------------------------------------------------------------------------- /external_library/gem/geomerative/data/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/gem/geomerative/data/FreeSans.ttf -------------------------------------------------------------------------------- /external_library/gem/geomerative/data/ReplicaBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/gem/geomerative/data/ReplicaBold.ttf -------------------------------------------------------------------------------- /external_library/gem/mdarray/data/java_args.txt: -------------------------------------------------------------------------------- 1 | -Xcompile.invokedynamic=true 2 | -------------------------------------------------------------------------------- /external_library/gem/pbox2d/data/java_args.txt: -------------------------------------------------------------------------------- 1 | -XX:CompileCommand=dontinline,org.jruby.runtime.invokedynamic.InvokeDynamicSupport::invocationFallback 2 | 3 | -------------------------------------------------------------------------------- /external_library/gem/ruby_wordcram/data/MINYN___.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/gem/ruby_wordcram/data/MINYN___.TTF -------------------------------------------------------------------------------- /external_library/gem/ruby_wordcram/data/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/gem/ruby_wordcram/data/heart.png -------------------------------------------------------------------------------- /external_library/gem/ruby_wordcram/data/yinyang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/gem/ruby_wordcram/data/yinyang.png -------------------------------------------------------------------------------- /external_library/gem/toxiclibs/geometry/library/lenny/lenny.rb: -------------------------------------------------------------------------------- 1 | require_relative 'lib/boundary' 2 | require_relative 'lib/path' 3 | -------------------------------------------------------------------------------- /external_library/gem/toxiclibs/verlet_physics/README.md: -------------------------------------------------------------------------------- 1 | both `crash_test.rb` and `physics_type.rb` need to be run with the`--nojruby` flag 2 | -------------------------------------------------------------------------------- /external_library/gem/toxiclibs/verlet_physics/soft_body/library/blanket.rb: -------------------------------------------------------------------------------- 1 | require_relative 'blanket' 2 | require_relative 'connection' 3 | require_relative 'particle' 4 | -------------------------------------------------------------------------------- /external_library/java/LiquidFunProcessing/README.md: -------------------------------------------------------------------------------- 1 | ### LiquidFunProcessing Examples 2 | 3 | NB: the `wave_machine.rb` sketch also requires the `PixelFlow` library also by Thomas Diewald. 4 | -------------------------------------------------------------------------------- /external_library/java/PixelFlow/data/mc_escher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/PixelFlow/data/mc_escher.jpg -------------------------------------------------------------------------------- /external_library/java/handy/data/HumorSans-18.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/handy/data/HumorSans-18.vlw -------------------------------------------------------------------------------- /external_library/java/handy/data/HumorSans-32.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/handy/data/HumorSans-32.vlw -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-001.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-002.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-003.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-004.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-005.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-006.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-007.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-008.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-009.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-010.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-011.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-012.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-013.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-014.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-015.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-016.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-017.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-018.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-019.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-020.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-021.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-022.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-023.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-024.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-025.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-026.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-027.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-028.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-029.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-030.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-031.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-032.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-033.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-034.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-035.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-036.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-037.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-038.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-039.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-040.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-041.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-042.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-043.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-044.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-045.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-046.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-047.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-048.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-049.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-050.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-051.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-052.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-053.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-054.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-055.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-056.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-057.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-058.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-059.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-060.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-061.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-062.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-063.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-064.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-065.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-066.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-067.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-068.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-069.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-070.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-071.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-072.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-073.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-074.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-075.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-076.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-077.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-078.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-079.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-080.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-081.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-082.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-083.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-084.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-085.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-085.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-086.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-087.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-088.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-089.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-090.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-091.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-091.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-092.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-093.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-093.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-094.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-094.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-095.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-096.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-097.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-098.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-098.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-099.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-100.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-101.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-102.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-103.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-104.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-105.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-106.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-107.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-108.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-109.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-110.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-111.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-112.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-113.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-114.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-115.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-116.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-117.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-118.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-119.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-120.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-121.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-122.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-123.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-124.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-125.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-126.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-127.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-128.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-129.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-130.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-131.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-132.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-133.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-134.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-135.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-136.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-137.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-138.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-139.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-140.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-141.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-142.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-143.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-144.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-145.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-146.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-147.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-148.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-149.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-150.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-151.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-152.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-153.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-154.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-155.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-156.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-157.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-158.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-159.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-160.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-161.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-162.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-163.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-164.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-165.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-166.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-167.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-168.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-169.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-170.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-171.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-172.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-173.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-174.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-175.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-176.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-177.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-178.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-179.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-180.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-181.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-182.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-183.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-183.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-184.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-185.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-186.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-187.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-188.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-189.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-190.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-191.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-192.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-193.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-194.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-195.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-196.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-197.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-198.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-199.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-200.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-201.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-202.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-203.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-204.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-205.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-206.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-207.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-208.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-209.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-209.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-210.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-211.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-212.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-213.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-214.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-215.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-216.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-217.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-217.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-218.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-219.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-220.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-221.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-222.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-223.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-224.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-225.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-226.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-227.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-228.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-229.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-230.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-231.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-232.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-232.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-233.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-234.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-235.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-236.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-237.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-238.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-238.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-239.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-240.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-241.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-241.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-242.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-243.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-243.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-244.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-245.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-245.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-246.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-247.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-248.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-249.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-250.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-251.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-252.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-253.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-253.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-254.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-255.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-256.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-257.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-258.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-259.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-259.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-260.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-260.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-261.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-261.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-262.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-262.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-263.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-264.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-265.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-265.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-266.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-266.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-267.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-267.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-268.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-268.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-269.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-269.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-270.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-271.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-271.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-272.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-273.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-273.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-274.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-274.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-275.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-275.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-276.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-276.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-277.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-277.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-278.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-278.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-279.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-279.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-280.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-281.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-281.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-282.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-282.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-283.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-283.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-284.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-284.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-285.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-285.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-286.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-286.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-287.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-287.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-288.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-289.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-289.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-290.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-290.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-291.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-291.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-292.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-292.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-293.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-293.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-294.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-294.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-295.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-295.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-296.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-297.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-297.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-298.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-298.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-299.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-299.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-300.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-301.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-302.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-303.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-304.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-305.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-305.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-306.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-306.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-307.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-308.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-309.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-309.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-310.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-311.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-312.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-313.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-314.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-315.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-316.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-316.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-317.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-317.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-318.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-318.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-319.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-320.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-321.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-321.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-322.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-322.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-323.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-323.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-324.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-324.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-325.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-325.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-326.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-326.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-327.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-327.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-328.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-329.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-330.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-330.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-331.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-332.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-332.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-333.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-333.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-334.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-335.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-336.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-337.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-338.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-339.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-339.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-340.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-340.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-341.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-342.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-343.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-343.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-344.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-344.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-345.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-345.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-346.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-346.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-347.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-347.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-348.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-348.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-349.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-349.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-350.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-351.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-351.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-352.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-352.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-353.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-353.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-354.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-354.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-355.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-355.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-356.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-356.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-357.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-357.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-358.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-358.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-359.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-359.png -------------------------------------------------------------------------------- /external_library/java/hemesh/data/square-360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hemesh/data/square-360.png -------------------------------------------------------------------------------- /external_library/java/hype/data/gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hype/data/gradient.jpg -------------------------------------------------------------------------------- /external_library/java/hype/data/phil_pai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hype/data/phil_pai.jpg -------------------------------------------------------------------------------- /external_library/java/hype/data/tex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hype/data/tex1.png -------------------------------------------------------------------------------- /external_library/java/hype/data/tex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hype/data/tex2.png -------------------------------------------------------------------------------- /external_library/java/hype/data/tex3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/hype/data/tex3.png -------------------------------------------------------------------------------- /external_library/java/minim/data/BD.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/minim/data/BD.mp3 -------------------------------------------------------------------------------- /external_library/java/minim/data/BD.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/minim/data/BD.wav -------------------------------------------------------------------------------- /external_library/java/minim/data/CHH.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/minim/data/CHH.wav -------------------------------------------------------------------------------- /external_library/java/minim/data/SD.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/minim/data/SD.wav -------------------------------------------------------------------------------- /external_library/java/minim/data/groove.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/minim/data/groove.mp3 -------------------------------------------------------------------------------- /external_library/java/minim/data/serif.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/external_library/java/minim/data/serif.vlw -------------------------------------------------------------------------------- /external_library/java/minim/library/tick/tick.rb: -------------------------------------------------------------------------------- 1 | require_relative 'lib/tick' 2 | require_relative 'lib/rect' 3 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/favicon.ico -------------------------------------------------------------------------------- /processing_app/basics/color/reading/data/cait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/color/reading/data/cait.jpg -------------------------------------------------------------------------------- /processing_app/basics/image/data/PT_anim0000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/PT_anim0000.gif -------------------------------------------------------------------------------- /processing_app/basics/image/data/PT_anim0001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/PT_anim0001.gif -------------------------------------------------------------------------------- /processing_app/basics/image/data/PT_anim0002.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/PT_anim0002.gif -------------------------------------------------------------------------------- /processing_app/basics/image/data/PT_anim0003.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/PT_anim0003.gif -------------------------------------------------------------------------------- /processing_app/basics/image/data/PT_anim0004.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/PT_anim0004.gif -------------------------------------------------------------------------------- /processing_app/basics/image/data/PT_anim0005.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/PT_anim0005.gif -------------------------------------------------------------------------------- /processing_app/basics/image/data/PT_anim0006.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/PT_anim0006.gif -------------------------------------------------------------------------------- /processing_app/basics/image/data/PT_anim0007.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/PT_anim0007.gif -------------------------------------------------------------------------------- /processing_app/basics/image/data/PT_anim0008.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/PT_anim0008.gif -------------------------------------------------------------------------------- /processing_app/basics/image/data/PT_anim0009.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/PT_anim0009.gif -------------------------------------------------------------------------------- /processing_app/basics/image/data/PT_anim0010.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/PT_anim0010.gif -------------------------------------------------------------------------------- /processing_app/basics/image/data/PT_anim0011.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/PT_anim0011.gif -------------------------------------------------------------------------------- /processing_app/basics/image/data/construct.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/construct.jpg -------------------------------------------------------------------------------- /processing_app/basics/image/data/eames.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/eames.jpg -------------------------------------------------------------------------------- /processing_app/basics/image/data/jelly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/jelly.jpg -------------------------------------------------------------------------------- /processing_app/basics/image/data/mask.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/mask.jpg -------------------------------------------------------------------------------- /processing_app/basics/image/data/milan_rubbish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/milan_rubbish.jpg -------------------------------------------------------------------------------- /processing_app/basics/image/data/teddy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/teddy.gif -------------------------------------------------------------------------------- /processing_app/basics/image/data/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/test.jpg -------------------------------------------------------------------------------- /processing_app/basics/image/data/wash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/wash.jpg -------------------------------------------------------------------------------- /processing_app/basics/image/data/ystone08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/image/data/ystone08.jpg -------------------------------------------------------------------------------- /processing_app/basics/math/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | -------------------------------------------------------------------------------- /processing_app/basics/objects/library/eggring/eggring.rb: -------------------------------------------------------------------------------- 1 | require_relative 'ring' 2 | require_relative 'egg' 3 | require_relative 'egg_ring' 4 | 5 | -------------------------------------------------------------------------------- /processing_app/basics/shape/data/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/shape/data/rocket.png -------------------------------------------------------------------------------- /processing_app/basics/textures/data/berlin-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/basics/textures/data/berlin-1.jpg -------------------------------------------------------------------------------- /processing_app/demos/graphics/README.md: -------------------------------------------------------------------------------- 1 | Warn planets.rb must be run with --nojruby prefix 2 | 3 | -------------------------------------------------------------------------------- /processing_app/demos/graphics/data/frag.glsl: -------------------------------------------------------------------------------- 1 | varying vec4 vertColor; 2 | 3 | void main() { 4 | gl_FragColor = vertColor; 5 | } -------------------------------------------------------------------------------- /processing_app/demos/graphics/data/java_args.txt: -------------------------------------------------------------------------------- 1 | -XX:InlineSmallCode=500 -Xms256m -Xmx2g -XX:NewSize=64m -XX:MaxNewSize=64m 2 | 3 | -------------------------------------------------------------------------------- /processing_app/demos/graphics/data/mercury.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/demos/graphics/data/mercury.jpg -------------------------------------------------------------------------------- /processing_app/demos/graphics/data/planet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/demos/graphics/data/planet.jpg -------------------------------------------------------------------------------- /processing_app/demos/graphics/data/starfield.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/demos/graphics/data/starfield.jpg -------------------------------------------------------------------------------- /processing_app/demos/graphics/data/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/demos/graphics/data/sun.jpg -------------------------------------------------------------------------------- /processing_app/demos/performance/README.md: -------------------------------------------------------------------------------- 1 | The mesh_tweening sketch must be run with the --nojruby flag 2 | -------------------------------------------------------------------------------- /processing_app/demos/performance/data/frag.glsl: -------------------------------------------------------------------------------- 1 | varying vec4 vertColor; 2 | 3 | void main() { 4 | gl_FragColor = vertColor; 5 | } -------------------------------------------------------------------------------- /processing_app/demos/performance/data/java_args.txt: -------------------------------------------------------------------------------- 1 | -XX:InlineSmallCode=500 -Xms256m -Xmx2g -XX:NewSize=64m -XX:MaxNewSize=64m 2 | 3 | -------------------------------------------------------------------------------- /processing_app/library/file_chooser/data/Message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/file_chooser/data/Message.png -------------------------------------------------------------------------------- /processing_app/library/file_chooser/data/einstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/file_chooser/data/einstein.png -------------------------------------------------------------------------------- /processing_app/library/file_chooser/data/haddock.cfdg: -------------------------------------------------------------------------------- 1 | CF::Background = [b -1] 2 | startshape haddock 3 | shape dot{CIRCLE[]} 4 | import data.cfdg 5 | -------------------------------------------------------------------------------- /processing_app/library/file_chooser/data/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/file_chooser/data/original.png -------------------------------------------------------------------------------- /processing_app/library/pdf/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | -------------------------------------------------------------------------------- /processing_app/library/sound/analysis/data/beat.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/sound/analysis/data/beat.aiff -------------------------------------------------------------------------------- /processing_app/library/sound/data/1.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/sound/data/1.aif -------------------------------------------------------------------------------- /processing_app/library/sound/data/2.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/sound/data/2.aif -------------------------------------------------------------------------------- /processing_app/library/sound/data/3.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/sound/data/3.aif -------------------------------------------------------------------------------- /processing_app/library/sound/data/4.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/sound/data/4.aif -------------------------------------------------------------------------------- /processing_app/library/sound/data/5.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/sound/data/5.aif -------------------------------------------------------------------------------- /processing_app/library/sound/data/vibraphon.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/sound/data/vibraphon.aiff -------------------------------------------------------------------------------- /processing_app/library/sound/soundfile/data/1.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/sound/soundfile/data/1.aif -------------------------------------------------------------------------------- /processing_app/library/sound/soundfile/data/2.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/sound/soundfile/data/2.aif -------------------------------------------------------------------------------- /processing_app/library/sound/soundfile/data/3.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/sound/soundfile/data/3.aif -------------------------------------------------------------------------------- /processing_app/library/sound/soundfile/data/4.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/sound/soundfile/data/4.aif -------------------------------------------------------------------------------- /processing_app/library/sound/soundfile/data/5.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/sound/soundfile/data/5.aif -------------------------------------------------------------------------------- /processing_app/library/sound/soundfile/data/beat.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/sound/soundfile/data/beat.aiff -------------------------------------------------------------------------------- /processing_app/library/svg/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | -------------------------------------------------------------------------------- /processing_app/library/vecmath/vec2d/data/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/vecmath/vec2d/data/sprite.png -------------------------------------------------------------------------------- /processing_app/library/vecmath/vec2d/data/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/vecmath/vec2d/data/texture.png -------------------------------------------------------------------------------- /processing_app/library/vecmath/vec2d/library/circle/circle.rb: -------------------------------------------------------------------------------- 1 | require_relative 'lib/circumcircle' 2 | require_relative 'lib/math_point' 3 | require_relative 'lib/points' 4 | 5 | -------------------------------------------------------------------------------- /processing_app/library/vecmath/vec2d/library/circle2/circle2.rb: -------------------------------------------------------------------------------- 1 | require_relative 'lib/circumcircle' 2 | require_relative 'lib/math_point' 3 | require_relative 'lib/points' 4 | 5 | -------------------------------------------------------------------------------- /processing_app/library/vecmath/vec2d/library/simple_circle/circle.rb: -------------------------------------------------------------------------------- 1 | require_relative 'lib/circumcircle' 2 | require_relative 'lib/t_points' 3 | require_relative 'lib/triangle_point' 4 | -------------------------------------------------------------------------------- /processing_app/library/vecmath/vec2d/library/simple_circle/simple_circle.rb: -------------------------------------------------------------------------------- 1 | require_relative 'lib/circumcircle' 2 | require_relative 'lib/simple_points' 3 | -------------------------------------------------------------------------------- /processing_app/library/vecmath/vec2d/library/verlet_chain/verlet_chain.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | require_relative 'lib/verlet_ball' 3 | require_relative 'lib/verlet_stick' 4 | -------------------------------------------------------------------------------- /processing_app/library/vecmath/vec3d/library/geometry/geometry.rb: -------------------------------------------------------------------------------- 1 | require_relative 'lib/plane' 2 | require_relative 'lib/mat4' 3 | require_relative 'lib/cylinder' 4 | -------------------------------------------------------------------------------- /processing_app/library/vecmath/vec3d/note.txt: -------------------------------------------------------------------------------- 1 | retained menger requires compat.version=2.0 (jruby-1.7.xx) 2 | -------------------------------------------------------------------------------- /processing_app/library/video/movie/data/transit.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/video/movie/data/transit.mkv -------------------------------------------------------------------------------- /processing_app/library/video/movie/data/transit.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/library/video/movie/data/transit.mov -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/README: -------------------------------------------------------------------------------- 1 | The load_json.rb relies json or json-ruby gem. 2 | -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/Georgia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/Georgia.ttf -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a000 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a000 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a001 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a001 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a002 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a002 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a003 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a003 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a004 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a004 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a005 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a005 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a006 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a006 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a007 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a007 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a008 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a008 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a009 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a009 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a010 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a010 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a011 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a011 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a012 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a012 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a013 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a013 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a014 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a014 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a015 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a015 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a016 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a016 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a017 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a017 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a018 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a018 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a019 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a019 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a020 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a020 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a021 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a021 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a022 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a022 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a023 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a023 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a024 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a024 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a025 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a025 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a026 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a026 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a027 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a027 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a028 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a028 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a029 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a029 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a030 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a030 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a031 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a031 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a032 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a032 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a033 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a033 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a034 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a034 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a035 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a035 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a036 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a036 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a037 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a037 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a038 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a038 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a039 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a039 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a040 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a040 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a041 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a041 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a042 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a042 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a043 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a043 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a044 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a044 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a045 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a045 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a046 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a046 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a047 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a047 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a048 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a048 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a049 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a049 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a050 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a050 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a051 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a051 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a052 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a052 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a053 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a053 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a054 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a054 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a055 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a055 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a056 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a056 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a057 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a057 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a058 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a058 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a059 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a059 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a060 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a060 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a061 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a061 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a062 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a062 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a063 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a063 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a064 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a064 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a065 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a065 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a066 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a066 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a067 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a067 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a068 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a068 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a069 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a069 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a070 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a070 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a071 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a071 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a072 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a072 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a073 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a073 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a074 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a074 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a075 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a075 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a076 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a076 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a077 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a077 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a078 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a078 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a079 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a079 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a080 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a080 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a081 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a081 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a082 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a082 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a083 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a083 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a084 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a084 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a085 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a085 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a086 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a086 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a087 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a087 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a088 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a088 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a089 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a089 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a090 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a090 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a091 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a091 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a092 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a092 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a093 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a093 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a094 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a094 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a095 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a095 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a096 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a096 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a097 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a097 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a098 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a098 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a099 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a099 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a100 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a100 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a101 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a101 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a102 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a102 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a103 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a103 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a104 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a104 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a105 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a105 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a106 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a106 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a107 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a107 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a108 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a108 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a109 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a109 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a110 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a110 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a111 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a111 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a112 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a112 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a113 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a113 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a114 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a114 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/a115 copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/advanced_data/data/a115 copy.jpg -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/data/data.csv: -------------------------------------------------------------------------------- 1 | x,y,diameter,name 2 | 160.0,103.0,43.19838,Happy 3 | 372.0,137.0,52.42526,Sad 4 | 273.0,235.0,61.14072,Joyous 5 | 121.0,179.0,44.758068,Melancholy 6 | -------------------------------------------------------------------------------- /processing_app/topics/advanced_data/library/bubble_struct_yaml/lib/bubble_struct.rb: -------------------------------------------------------------------------------- 1 | # Holder of bubble data for saving as yaml file 2 | BubbleStruct = Struct.new(:xpos, :ypos, :diameter, :label) 3 | -------------------------------------------------------------------------------- /processing_app/topics/animation/README.txt: -------------------------------------------------------------------------------- 1 | Sketches that load images seem to need --nojruby flag (weird). 2 | -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0000.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0001.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0002.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0002.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0003.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0003.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0004.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0004.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0005.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0005.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0006.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0006.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0007.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0007.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0008.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0008.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0009.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0009.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0010.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0010.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0011.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0011.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0012.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0012.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0013.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0013.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0014.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0014.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0015.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0015.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0016.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0016.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0017.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0017.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0018.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0018.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0019.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0019.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0020.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0020.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0021.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0021.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0022.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0022.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0023.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0023.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0024.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0024.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0025.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0025.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0026.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0026.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0027.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0027.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0028.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0028.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0029.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0029.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0030.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0030.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0031.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0031.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0032.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0032.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0033.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0033.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0034.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0034.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0035.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0035.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0036.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0036.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0037.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0037.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0038.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0038.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0039.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0039.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0040.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0040.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0041.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0041.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0042.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0042.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0043.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0043.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0044.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0044.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0045.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0045.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0046.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0046.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0047.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0047.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0048.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0048.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0049.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0049.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0050.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0050.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0051.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0051.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0052.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0052.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0053.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0053.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0054.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0054.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0055.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0055.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0056.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0056.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0057.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0057.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0058.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0058.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_Teddy_0059.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_Teddy_0059.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_anim0000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_anim0000.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_anim0001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_anim0001.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_anim0002.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_anim0002.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_anim0003.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_anim0003.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_anim0004.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_anim0004.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_anim0005.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_anim0005.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_anim0006.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_anim0006.gif -------------------------------------------------------------------------------- /processing_app/topics/animation/data/PT_anim0007.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/animation/data/PT_anim0007.gif -------------------------------------------------------------------------------- /processing_app/topics/create_shapes/data/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/create_shapes/data/sprite.png -------------------------------------------------------------------------------- /processing_app/topics/effects/data/red_smoke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/effects/data/red_smoke.jpg -------------------------------------------------------------------------------- /processing_app/topics/gui/data/seedBottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/gui/data/seedBottom.jpg -------------------------------------------------------------------------------- /processing_app/topics/gui/data/seedTop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/gui/data/seedTop.jpg -------------------------------------------------------------------------------- /processing_app/topics/image_processing/data/sea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/image_processing/data/sea.jpg -------------------------------------------------------------------------------- /processing_app/topics/motion/data/java_args.txt: -------------------------------------------------------------------------------- 1 | -Djruby.ji.objectProxyCache=false -XX:CompileCommand=dontinline,org.jruby.runtime.invokedynamic.InvokeDynamicSupport::invocationFallback 2 | 3 | 4 | -------------------------------------------------------------------------------- /processing_app/topics/shaders/data/Texture01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/shaders/data/Texture01.jpg -------------------------------------------------------------------------------- /processing_app/topics/shaders/data/Texture02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/shaders/data/Texture02.jpg -------------------------------------------------------------------------------- /processing_app/topics/shaders/data/lachoy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/shaders/data/lachoy.jpg -------------------------------------------------------------------------------- /processing_app/topics/shaders/data/leaves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/shaders/data/leaves.jpg -------------------------------------------------------------------------------- /processing_app/topics/shaders/data/penrose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/shaders/data/penrose.jpg -------------------------------------------------------------------------------- /processing_app/topics/shaders/data/tex1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/shaders/data/tex1.jpg -------------------------------------------------------------------------------- /processing_app/topics/simulate/README: -------------------------------------------------------------------------------- 1 | Some sketches in this folder may need to be run with the --nojruby flag, 2 | eg smoke_particle_system.rb. 3 | -------------------------------------------------------------------------------- /processing_app/topics/simulate/data/java_args.txt: -------------------------------------------------------------------------------- 1 | -XX:+OptimizeStringConcat -XX:CompileCommand=dontinline,org.jruby.runtime.invokedynamic.InvokeDynamicSupport::invocationFallback 2 | 3 | -------------------------------------------------------------------------------- /processing_app/topics/simulate/data/texture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/simulate/data/texture.gif -------------------------------------------------------------------------------- /processing_app/topics/simulate/data/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/simulate/data/texture.png -------------------------------------------------------------------------------- /processing_app/topics/texture/data/berlin-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/texture/data/berlin-1.jpg -------------------------------------------------------------------------------- /processing_app/topics/texture/data/world32k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-processing/JRubyArt-examples/9a90f5eac513699e19cd81f1003764b65097a34a/processing_app/topics/texture/data/world32k.jpg --------------------------------------------------------------------------------