ruby-processing 1.0.11 → 2.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (818) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.travis.yml +6 -0
  4. data/.yardopts +5 -0
  5. data/CHANGELOG +81 -0
  6. data/CONTRIBUTING.md +33 -0
  7. data/Gemfile +6 -0
  8. data/{LICENSE → LICENSE.md} +6 -4
  9. data/README.md +114 -0
  10. data/Rakefile +37 -0
  11. data/bin/install_jruby_complete +13 -0
  12. data/lib/ruby-processing.rb +3 -10
  13. data/lib/ruby-processing/app.rb +92 -137
  14. data/lib/ruby-processing/config.rb +14 -3
  15. data/lib/ruby-processing/exporters/application_exporter.rb +9 -5
  16. data/lib/ruby-processing/exporters/base_exporter.rb +3 -3
  17. data/lib/ruby-processing/exporters/creator.rb +4 -4
  18. data/lib/ruby-processing/exporters/exporters.rb +7 -0
  19. data/lib/ruby-processing/helper_methods.rb +18 -7
  20. data/lib/ruby-processing/library_loader.rb +17 -16
  21. data/lib/ruby-processing/runner.rb +38 -34
  22. data/lib/ruby-processing/runners/base.rb +1 -13
  23. data/lib/ruby-processing/runners/run.rb +2 -1
  24. data/lib/ruby-processing/runners/watch.rb +1 -1
  25. data/lib/ruby-processing/version.rb +3 -0
  26. data/lib/templates/application/Contents/Info.plist.erb +2 -2
  27. data/lib/templates/application/lib/args.txt.erb +1 -1
  28. data/lib/templates/application/run.erb +2 -1
  29. data/lib/templates/create/blank_sketch.rb.erb +4 -12
  30. data/lib/templates/create/p3d_sketch.rb.erb +7 -0
  31. data/library/boids/boids.rb +76 -58
  32. data/library/control_panel/control_panel.rb +21 -18
  33. data/library/file_chooser/file_chooser.rb +90 -0
  34. data/library/vecmath/vecmath.rb +323 -0
  35. data/ruby-processing.gemspec +54 -0
  36. data/samples/contributed/animator.rb +9 -4
  37. data/samples/contributed/bezier_playground.rb +178 -184
  38. data/samples/contributed/circle_collision.rb +164 -171
  39. data/samples/contributed/drawolver.rb +111 -162
  40. data/samples/contributed/empathy.rb +14 -12
  41. data/samples/contributed/fern.rb +1 -1
  42. data/samples/contributed/fibonacci_sphere.rb +125 -0
  43. data/samples/contributed/flight_patterns.rb +7 -14
  44. data/samples/contributed/full_screen.rb +4 -6
  45. data/samples/contributed/grapher.rb +35 -0
  46. data/samples/contributed/gravity.rb +22 -24
  47. data/samples/contributed/jwishy.rb +75 -63
  48. data/samples/contributed/mandelbrot.rb +82 -0
  49. data/samples/contributed/orbit.rb +5 -4
  50. data/samples/contributed/pong.rb +152 -150
  51. data/samples/contributed/quadraticvertex.rb +98 -0
  52. data/samples/contributed/re_sample.rb +27 -0
  53. data/samples/contributed/simple_buffer.rb +38 -43
  54. data/samples/contributed/tree.rb +63 -70
  55. data/samples/external_library/java_processing/README +3 -0
  56. data/samples/external_library/java_processing/fisica/README +1 -0
  57. data/samples/external_library/java_processing/fisica/bubbles.rb +80 -0
  58. data/samples/external_library/java_processing/fisica/joints.rb +112 -0
  59. data/samples/external_library/java_processing/fisica/polygons.rb +79 -0
  60. data/samples/external_library/java_processing/fisica/raycast.rb +61 -0
  61. data/samples/external_library/java_processing/generative_design/mesh_example.rb +25 -0
  62. data/samples/external_library/java_processing/generative_design/node_spring_attractor.rb +83 -0
  63. data/samples/external_library/java_processing/generative_design/sub_class_example.rb +44 -0
  64. data/samples/external_library/java_processing/geomerative/data/FreeSans.ttf +0 -0
  65. data/samples/external_library/java_processing/geomerative/data/Toucan.svg +43 -0
  66. data/samples/external_library/java_processing/geomerative/hello_bot_ignore_styles.rb +38 -0
  67. data/samples/external_library/java_processing/geomerative/hello_world_rotate_firstletter.rb +43 -0
  68. data/samples/external_library/java_processing/geomerative/hola_mundo.rb +37 -0
  69. data/samples/external_library/java_processing/grafica/data/OktoberfestVSGermanElections.csv +118 -0
  70. data/samples/external_library/java_processing/grafica/default_plot.rb +30 -0
  71. data/samples/external_library/java_processing/grafica/multiple_panels.rb +117 -0
  72. data/samples/external_library/java_processing/grafica/oktoberfest_example.rb +83 -0
  73. data/samples/external_library/java_processing/hemesh/data/java_args.txt +2 -0
  74. data/samples/external_library/java_processing/hemesh/library/vbo/mesh_to_vbo.rb +43 -0
  75. data/samples/external_library/java_processing/hemesh/twin_iso.rb +71 -0
  76. data/samples/external_library/java_processing/pbox2d/bumpy_surface_noise.rb +57 -0
  77. data/samples/external_library/java_processing/pbox2d/contact_test.rb +23 -0
  78. data/samples/external_library/java_processing/pbox2d/data/java_args.txt +2 -0
  79. data/samples/external_library/java_processing/pbox2d/library/custom_shape/custom_shape.rb +158 -0
  80. data/samples/external_library/java_processing/pbox2d/library/particle_system/particle_system.rb +212 -0
  81. data/samples/external_library/java_processing/pbox2d/library/surface/surface.rb +154 -0
  82. data/samples/external_library/java_processing/pbox2d/liquidy.rb +58 -0
  83. data/samples/external_library/java_processing/pbox2d/polygons.rb +58 -0
  84. data/samples/{peasy_cam → external_library/java_processing/peasy_cam}/hello_peasy.rb +4 -4
  85. data/samples/external_library/java_processing/peasy_cam/hilbert_fractal.rb +34 -0
  86. data/samples/{peasy_cam → external_library/java_processing/peasy_cam}/library/hilbert/hilbert.rb +1 -1
  87. data/samples/external_library/java_processing/proscene/cad_camera.rb +57 -0
  88. data/samples/external_library/java_processing/proscene/camera_customization.rb +114 -0
  89. data/samples/external_library/java_processing/proscene/data/ti_yong.png +0 -0
  90. data/samples/external_library/java_processing/toxiclibs/data/ti_yong.png +0 -0
  91. data/samples/external_library/java_processing/toxiclibs/gray_scott_image.rb +79 -0
  92. data/samples/external_library/java_processing/toxiclibs/gray_scott_tone_map.rb +78 -0
  93. data/samples/external_library/java_processing/toxiclibs/implicit.rb +143 -0
  94. data/samples/external_library/java_processing/toxiclibs/library/vbo/mesh_to_vbo.rb +52 -0
  95. data/samples/external_library/java_processing/toxiclibs/model_align.rb +55 -0
  96. data/samples/external_library/ruby_gem/README +12 -0
  97. data/samples/external_library/ruby_gem/data/README.txt +1 -0
  98. data/samples/external_library/ruby_gem/data/java_args.txt +2 -0
  99. data/samples/external_library/ruby_gem/game_of_life.rb +127 -0
  100. data/samples/external_library/ruby_gem/mdarray_test.rb +28 -0
  101. data/samples/processing_app/basics/arrays/array.rb +23 -29
  102. data/samples/processing_app/basics/arrays/array_2d.rb +22 -28
  103. data/samples/processing_app/basics/arrays/array_objects.rb +50 -55
  104. data/samples/processing_app/basics/camera/move_eye.rb +24 -0
  105. data/samples/processing_app/{3D → basics}/camera/perspective.rb +0 -0
  106. data/samples/processing_app/basics/color/brightness.rb +15 -21
  107. data/samples/processing_app/basics/color/color_wheel.rb +72 -79
  108. data/samples/processing_app/basics/color/creating.rb +35 -24
  109. data/samples/processing_app/basics/color/hue.rb +16 -22
  110. data/samples/processing_app/basics/color/linear_gradient.rb +35 -40
  111. data/samples/processing_app/basics/color/radial_gradient.rb +26 -34
  112. data/samples/processing_app/basics/color/reading/reading.rb +2 -7
  113. data/samples/processing_app/basics/color/relativity.rb +19 -32
  114. data/samples/processing_app/basics/color/saturation.rb +15 -26
  115. data/samples/processing_app/basics/color/wave_gradient.rb +25 -36
  116. data/samples/processing_app/basics/control/conditionals1.rb +20 -25
  117. data/samples/processing_app/basics/control/conditionals2.rb +27 -32
  118. data/samples/processing_app/basics/control/embedded_iteration.rb +25 -33
  119. data/samples/processing_app/basics/control/iteration.rb +43 -54
  120. data/samples/processing_app/basics/control/logical_operators.rb +45 -48
  121. data/samples/processing_app/basics/data/characters_strings.rb +50 -0
  122. data/samples/processing_app/basics/data/datatype_conversion.rb +28 -32
  123. data/samples/processing_app/basics/data/integers_floats.rb +18 -24
  124. data/samples/processing_app/basics/data/true_false.rb +19 -25
  125. data/samples/processing_app/basics/data/variable_scope.rb +51 -57
  126. data/samples/processing_app/basics/data/variables.rb +27 -32
  127. data/samples/processing_app/basics/form/bezier.rb +11 -14
  128. data/samples/processing_app/basics/form/bezier_ellipse.rb +79 -90
  129. data/samples/processing_app/basics/form/brick_tower.rb +92 -0
  130. data/samples/processing_app/basics/form/cubic_grid.rb +39 -0
  131. data/samples/processing_app/{3D → basics}/form/icosahedra/icosahedra.rb +32 -36
  132. data/samples/processing_app/{3D → basics}/form/icosahedra/icosahedron.rb +1 -1
  133. data/samples/processing_app/{3D → basics}/form/icosahedra/shape_3D.rb +0 -0
  134. data/samples/processing_app/basics/form/pie_chart.rb +17 -21
  135. data/samples/processing_app/basics/form/points_lines.rb +11 -16
  136. data/samples/processing_app/{3D → basics}/form/primitives.rb +11 -25
  137. data/samples/processing_app/basics/form/regular_polygon.rb +46 -0
  138. data/samples/processing_app/basics/form/rgb_cube.rb +68 -0
  139. data/samples/processing_app/basics/form/shape_primitives.rb +15 -17
  140. data/samples/processing_app/basics/form/shape_transform.rb +88 -0
  141. data/samples/processing_app/basics/form/star.rb +48 -0
  142. data/samples/processing_app/basics/form/toroid.rb +127 -0
  143. data/samples/processing_app/basics/form/triangle_strip.rb +29 -33
  144. data/samples/processing_app/basics/form/vertices.rb +36 -40
  145. data/samples/processing_app/basics/image/alphamask.rb +10 -16
  146. data/samples/processing_app/basics/image/background_image.rb +16 -22
  147. data/samples/processing_app/basics/image/create_image.rb +10 -16
  148. data/samples/processing_app/{3D → basics}/image/data/ystone08.jpg +0 -0
  149. data/samples/processing_app/basics/image/extrusion.rb +46 -0
  150. data/samples/processing_app/basics/image/load_display_image.rb +12 -19
  151. data/samples/processing_app/basics/image/pointillism.rb +13 -19
  152. data/samples/processing_app/basics/image/request_image.rb +41 -50
  153. data/samples/processing_app/basics/image/sprite.rb +19 -25
  154. data/samples/processing_app/basics/image/transparency.rb +14 -20
  155. data/samples/processing_app/basics/image/zoom.rb +59 -0
  156. data/samples/processing_app/basics/input/clock.rb +32 -38
  157. data/samples/processing_app/basics/input/constrain.rb +25 -31
  158. data/samples/processing_app/basics/input/easing.rb +18 -20
  159. data/samples/processing_app/basics/input/keyboard.rb +16 -22
  160. data/samples/processing_app/basics/input/keyboard_functions.rb +49 -68
  161. data/samples/processing_app/basics/input/milliseconds.rb +11 -16
  162. data/samples/processing_app/basics/input/mouse_1d.rb +19 -26
  163. data/samples/processing_app/basics/input/mouse_2d.rb +14 -20
  164. data/samples/processing_app/basics/input/mouse_functions.rb +56 -61
  165. data/samples/processing_app/basics/input/mouse_press.rb +9 -15
  166. data/samples/processing_app/basics/input/mouse_signals.rb +29 -34
  167. data/samples/processing_app/basics/input/storing_input.rb +28 -29
  168. data/samples/processing_app/basics/lights/directional.rb +37 -0
  169. data/samples/processing_app/basics/lights/lights1.rb +35 -0
  170. data/samples/processing_app/basics/lights/lights2.rb +38 -0
  171. data/samples/processing_app/basics/lights/reflection.rb +35 -0
  172. data/samples/processing_app/basics/lights/spot.rb +36 -0
  173. data/samples/processing_app/basics/math/additive_wave.rb +51 -53
  174. data/samples/processing_app/basics/math/arctangent.rb +34 -44
  175. data/samples/processing_app/basics/math/distance1.rb +44 -50
  176. data/samples/processing_app/basics/math/distance2.rb +14 -30
  177. data/samples/processing_app/basics/math/double_random.rb +23 -30
  178. data/samples/processing_app/basics/math/graphing_2_d_equation.rb +30 -44
  179. data/samples/processing_app/basics/math/increment_decrement.rb +37 -42
  180. data/samples/processing_app/basics/math/interpolate.rb +34 -0
  181. data/samples/processing_app/basics/math/modulo.rb +25 -29
  182. data/samples/processing_app/basics/math/noise_1_d.rb +14 -30
  183. data/samples/processing_app/basics/math/noise_2_d.rb +22 -39
  184. data/samples/processing_app/basics/math/noise_3_d.rb +24 -44
  185. data/samples/processing_app/basics/math/noise_wave.rb +35 -55
  186. data/samples/processing_app/basics/math/operator_precedence.rb +24 -45
  187. data/samples/processing_app/basics/math/polar_to_cartesian.rb +22 -35
  188. data/samples/processing_app/basics/math/random.rb +13 -27
  189. data/samples/processing_app/basics/math/random_gaussian.rb +23 -0
  190. data/samples/processing_app/basics/math/sine.rb +27 -41
  191. data/samples/processing_app/basics/math/sine_cosine.rb +37 -49
  192. data/samples/processing_app/basics/math/sine_wave.rb +33 -52
  193. data/samples/processing_app/basics/objects/composite_objects.rb +94 -120
  194. data/samples/processing_app/basics/objects/inheritance.rb +64 -86
  195. data/samples/processing_app/basics/objects/multiple_constructors.rb +25 -38
  196. data/samples/processing_app/basics/objects/objects.rb +42 -57
  197. data/samples/processing_app/basics/shape/data/rocket.mtl +8 -0
  198. data/samples/processing_app/basics/shape/data/rocket.obj +1688 -0
  199. data/samples/processing_app/basics/shape/data/rocket.png +0 -0
  200. data/samples/processing_app/basics/shape/disable_style.rb +21 -25
  201. data/samples/processing_app/basics/shape/get_child.rb +27 -30
  202. data/samples/processing_app/basics/shape/load_display_obj.rb +25 -0
  203. data/samples/processing_app/basics/shape/load_display_shape.rb +10 -23
  204. data/samples/processing_app/basics/shape/load_display_svg.rb +22 -0
  205. data/samples/processing_app/basics/shape/scale_shape.rb +13 -23
  206. data/samples/processing_app/basics/structure/coordinates.rb +12 -25
  207. data/samples/processing_app/basics/structure/create_graphics.rb +18 -28
  208. data/samples/processing_app/basics/structure/functions.rb +19 -31
  209. data/samples/processing_app/basics/structure/loop.rb +21 -35
  210. data/samples/processing_app/basics/structure/noloop.rb +13 -25
  211. data/samples/processing_app/basics/structure/recursion1.rb +18 -33
  212. data/samples/processing_app/basics/structure/recursion2.rb +18 -34
  213. data/samples/processing_app/basics/structure/redraw.rb +16 -27
  214. data/samples/processing_app/basics/structure/setup_draw.rb +11 -22
  215. data/samples/processing_app/basics/structure/statements_comments.rb +7 -13
  216. data/samples/processing_app/basics/structure/width_height.rb +7 -14
  217. data/samples/processing_app/{3D → basics}/textures/data/berlin-1.jpg +0 -0
  218. data/samples/processing_app/basics/textures/texture1.rb +28 -0
  219. data/samples/processing_app/basics/textures/texture2.rb +33 -0
  220. data/samples/processing_app/basics/textures/texture3.rb +64 -0
  221. data/samples/processing_app/basics/textures/texture_cube.rb +86 -0
  222. data/samples/processing_app/basics/transform/arm.rb +22 -37
  223. data/samples/processing_app/basics/transform/bird.rb +57 -0
  224. data/samples/processing_app/basics/transform/birds.rb +38 -0
  225. data/samples/processing_app/basics/transform/cubes_in_cube.rb +99 -0
  226. data/samples/processing_app/{3D/transform/birds → basics/transform/library/bird}/bird.rb +0 -0
  227. data/samples/processing_app/{3D/transform/cubes_in_cube → basics/transform/library/cube}/cube.rb +10 -12
  228. data/samples/processing_app/basics/transform/rotate.rb +17 -31
  229. data/samples/processing_app/basics/transform/rotate1.rb +27 -0
  230. data/samples/processing_app/basics/transform/rotate_push_pop.rb +35 -0
  231. data/samples/processing_app/basics/transform/rotate_x_y.rb +36 -0
  232. data/samples/processing_app/basics/transform/scale.rb +19 -35
  233. data/samples/processing_app/basics/transform/translate.rb +18 -32
  234. data/samples/processing_app/basics/transform/triangle_flower.rb +38 -55
  235. data/samples/processing_app/{3D → basics}/typography/data/Univers45.vlw +0 -0
  236. data/samples/processing_app/{3D → basics}/typography/kinetic_type.rb +1 -5
  237. data/samples/processing_app/basics/typography/letters.rb +26 -44
  238. data/samples/processing_app/basics/typography/words.rb +29 -30
  239. data/samples/processing_app/basics/web/embedded_links.rb +39 -45
  240. data/samples/processing_app/basics/web/loading_images.rb +6 -16
  241. data/samples/processing_app/demos/graphics/bezier_patch.rb +227 -0
  242. data/samples/processing_app/demos/graphics/data/frag.glsl +30 -0
  243. data/samples/processing_app/demos/graphics/data/java_args.txt +2 -0
  244. data/samples/processing_app/demos/graphics/data/mercury.jpg +0 -0
  245. data/samples/processing_app/demos/graphics/data/planet.jpg +0 -0
  246. data/samples/processing_app/demos/graphics/data/starfield.jpg +0 -0
  247. data/samples/processing_app/demos/graphics/data/sun.jpg +0 -0
  248. data/samples/processing_app/demos/graphics/data/vert.glsl +31 -0
  249. data/samples/processing_app/demos/graphics/low_level_gl.rb +72 -0
  250. data/samples/processing_app/demos/graphics/planets.rb +51 -0
  251. data/samples/processing_app/demos/graphics/trefoil.rb +142 -0
  252. data/samples/processing_app/demos/graphics/wiggling.rb +289 -0
  253. data/samples/processing_app/demos/performance/cubic_grid_retained.rb +58 -0
  254. data/samples/processing_app/demos/performance/data/java_args.txt +1 -0
  255. data/samples/processing_app/demos/performance/esfera.rb +105 -0
  256. data/samples/processing_app/demos/performance/text_rendering.rb +14 -0
  257. data/samples/processing_app/demos/tests/no_background_test.rb +10 -0
  258. data/samples/processing_app/demos/tests/offscreen_test.rb +34 -0
  259. data/samples/processing_app/demos/tests/redraw_test.rb +14 -0
  260. data/samples/processing_app/demos/tests/resize_test.rb +10 -0
  261. data/samples/processing_app/demos/tests/restart_test.rb +22 -0
  262. data/samples/processing_app/demos/tests/smooth_test.rb +27 -0
  263. data/samples/processing_app/demos/tests/specs_test.rb +11 -0
  264. data/samples/processing_app/library/dxf/simple_export.rb +48 -0
  265. data/samples/processing_app/library/file_chooser/image_viewer.rb +24 -0
  266. data/samples/processing_app/library/minim/filter_example.rb +65 -0
  267. data/samples/processing_app/library/minim/frequency_modulation.rb +64 -0
  268. data/samples/processing_app/library/minim/sequence_sound.rb +59 -0
  269. data/samples/processing_app/library/minim/synthesize_sound.rb +35 -0
  270. data/samples/processing_app/library/movie/README +1 -0
  271. data/samples/processing_app/library/movie/data/transit.mkv +0 -0
  272. data/samples/processing_app/library/movie/data/transit.mov +0 -0
  273. data/samples/processing_app/library/movie/loop.rb +24 -0
  274. data/samples/processing_app/library/movie/pixelate.rb +50 -0
  275. data/samples/processing_app/library/movie/reverse.rb +47 -0
  276. data/samples/processing_app/library/movie/scratch.rb +36 -0
  277. data/samples/processing_app/library/movie/speed.rb +33 -0
  278. data/samples/processing_app/library/net/HTTPClient.rb +31 -0
  279. data/samples/processing_app/library/pdf/.gitignore +1 -0
  280. data/samples/processing_app/library/pdf/complex_3D.rb +160 -0
  281. data/samples/processing_app/library/pdf/large_page.rb +25 -0
  282. data/samples/processing_app/library/pdf/many_frames.rb +33 -0
  283. data/samples/processing_app/library/pdf/many_pages.rb +31 -0
  284. data/samples/processing_app/library/pdf/many_pdfs.rb +37 -0
  285. data/samples/processing_app/library/pdf/one_frame.rb +19 -0
  286. data/samples/processing_app/library/vecmath/README.txt +2 -0
  287. data/samples/processing_app/library/vecmath/acceleration_with_vectors.rb +75 -0
  288. data/samples/processing_app/library/vecmath/bouncing_ball.rb +51 -0
  289. data/samples/processing_app/library/vecmath/circle_collision.rb +174 -0
  290. data/samples/processing_app/library/vecmath/data/java_args.txt +2 -0
  291. data/samples/processing_app/library/vecmath/data/sprite.png +0 -0
  292. data/samples/processing_app/library/vecmath/data/texture.png +0 -0
  293. data/samples/processing_app/library/vecmath/drawolver.rb +111 -0
  294. data/samples/processing_app/library/vecmath/flocking.rb +33 -0
  295. data/samples/processing_app/library/vecmath/hilbert_fractal.rb +65 -0
  296. data/samples/processing_app/library/vecmath/library/flock/flock.rb +214 -0
  297. data/samples/processing_app/library/vecmath/library/hilbert/hilbert.rb +84 -0
  298. data/samples/processing_app/library/vecmath/library/particle/particle_system.rb +106 -0
  299. data/samples/processing_app/library/vecmath/library/wiggler/wiggler.rb +58 -0
  300. data/samples/processing_app/library/vecmath/morph.rb +86 -0
  301. data/samples/processing_app/library/vecmath/multiple_particle_systems.rb +158 -0
  302. data/samples/processing_app/library/vecmath/particle_system_pshape.rb +38 -0
  303. data/samples/processing_app/library/vecmath/reflection1.rb +108 -0
  304. data/samples/processing_app/library/vecmath/retained_menger.rb +150 -0
  305. data/samples/processing_app/library/vecmath/retained_test.rb +65 -0
  306. data/samples/processing_app/library/vecmath/retained_test2.rb +65 -0
  307. data/samples/processing_app/library/vecmath/simple_particle_system.rb +89 -0
  308. data/samples/processing_app/library/vecmath/smoke_particle_system.rb +138 -0
  309. data/samples/processing_app/library/vecmath/vector_math.rb +39 -0
  310. data/samples/processing_app/library/vecmath/wiggle_pshape.rb +22 -0
  311. data/samples/processing_app/topics/advanced_data/README +1 -0
  312. data/samples/processing_app/topics/advanced_data/counting_words.rb +79 -0
  313. data/samples/processing_app/topics/advanced_data/data/Georgia.ttf +0 -0
  314. data/samples/processing_app/topics/advanced_data/data/Merriweather-Light.ttf +0 -0
  315. data/samples/processing_app/topics/advanced_data/data/a000 copy.jpg +0 -0
  316. data/samples/processing_app/topics/advanced_data/data/a001 copy.jpg +0 -0
  317. data/samples/processing_app/topics/advanced_data/data/a002 copy.jpg +0 -0
  318. data/samples/processing_app/topics/advanced_data/data/a003 copy.jpg +0 -0
  319. data/samples/processing_app/topics/advanced_data/data/a004 copy.jpg +0 -0
  320. data/samples/processing_app/topics/advanced_data/data/a005 copy.jpg +0 -0
  321. data/samples/processing_app/topics/advanced_data/data/a006 copy.jpg +0 -0
  322. data/samples/processing_app/topics/advanced_data/data/a007 copy.jpg +0 -0
  323. data/samples/processing_app/topics/advanced_data/data/a008 copy.jpg +0 -0
  324. data/samples/processing_app/topics/advanced_data/data/a009 copy.jpg +0 -0
  325. data/samples/processing_app/topics/advanced_data/data/a010 copy.jpg +0 -0
  326. data/samples/processing_app/topics/advanced_data/data/a011 copy.jpg +0 -0
  327. data/samples/processing_app/topics/advanced_data/data/a012 copy.jpg +0 -0
  328. data/samples/processing_app/topics/advanced_data/data/a013 copy.jpg +0 -0
  329. data/samples/processing_app/topics/advanced_data/data/a014 copy.jpg +0 -0
  330. data/samples/processing_app/topics/advanced_data/data/a015 copy.jpg +0 -0
  331. data/samples/processing_app/topics/advanced_data/data/a016 copy.jpg +0 -0
  332. data/samples/processing_app/topics/advanced_data/data/a017 copy.jpg +0 -0
  333. data/samples/processing_app/topics/advanced_data/data/a018 copy.jpg +0 -0
  334. data/samples/processing_app/topics/advanced_data/data/a019 copy.jpg +0 -0
  335. data/samples/processing_app/topics/advanced_data/data/a020 copy.jpg +0 -0
  336. data/samples/processing_app/topics/advanced_data/data/a021 copy.jpg +0 -0
  337. data/samples/processing_app/topics/advanced_data/data/a022 copy.jpg +0 -0
  338. data/samples/processing_app/topics/advanced_data/data/a023 copy.jpg +0 -0
  339. data/samples/processing_app/topics/advanced_data/data/a024 copy.jpg +0 -0
  340. data/samples/processing_app/topics/advanced_data/data/a025 copy.jpg +0 -0
  341. data/samples/processing_app/topics/advanced_data/data/a026 copy.jpg +0 -0
  342. data/samples/processing_app/topics/advanced_data/data/a027 copy.jpg +0 -0
  343. data/samples/processing_app/topics/advanced_data/data/a028 copy.jpg +0 -0
  344. data/samples/processing_app/topics/advanced_data/data/a029 copy.jpg +0 -0
  345. data/samples/processing_app/topics/advanced_data/data/a030 copy.jpg +0 -0
  346. data/samples/processing_app/topics/advanced_data/data/a031 copy.jpg +0 -0
  347. data/samples/processing_app/topics/advanced_data/data/a032 copy.jpg +0 -0
  348. data/samples/processing_app/topics/advanced_data/data/a033 copy.jpg +0 -0
  349. data/samples/processing_app/topics/advanced_data/data/a034 copy.jpg +0 -0
  350. data/samples/processing_app/topics/advanced_data/data/a035 copy.jpg +0 -0
  351. data/samples/processing_app/topics/advanced_data/data/a036 copy.jpg +0 -0
  352. data/samples/processing_app/topics/advanced_data/data/a037 copy.jpg +0 -0
  353. data/samples/processing_app/topics/advanced_data/data/a038 copy.jpg +0 -0
  354. data/samples/processing_app/topics/advanced_data/data/a039 copy.jpg +0 -0
  355. data/samples/processing_app/topics/advanced_data/data/a040 copy.jpg +0 -0
  356. data/samples/processing_app/topics/advanced_data/data/a041 copy.jpg +0 -0
  357. data/samples/processing_app/topics/advanced_data/data/a042 copy.jpg +0 -0
  358. data/samples/processing_app/topics/advanced_data/data/a043 copy.jpg +0 -0
  359. data/samples/processing_app/topics/advanced_data/data/a044 copy.jpg +0 -0
  360. data/samples/processing_app/topics/advanced_data/data/a045 copy.jpg +0 -0
  361. data/samples/processing_app/topics/advanced_data/data/a046 copy.jpg +0 -0
  362. data/samples/processing_app/topics/advanced_data/data/a047 copy.jpg +0 -0
  363. data/samples/processing_app/topics/advanced_data/data/a048 copy.jpg +0 -0
  364. data/samples/processing_app/topics/advanced_data/data/a049 copy.jpg +0 -0
  365. data/samples/processing_app/topics/advanced_data/data/a050 copy.jpg +0 -0
  366. data/samples/processing_app/topics/advanced_data/data/a051 copy.jpg +0 -0
  367. data/samples/processing_app/topics/advanced_data/data/a052 copy.jpg +0 -0
  368. data/samples/processing_app/topics/advanced_data/data/a053 copy.jpg +0 -0
  369. data/samples/processing_app/topics/advanced_data/data/a054 copy.jpg +0 -0
  370. data/samples/processing_app/topics/advanced_data/data/a055 copy.jpg +0 -0
  371. data/samples/processing_app/topics/advanced_data/data/a056 copy.jpg +0 -0
  372. data/samples/processing_app/topics/advanced_data/data/a057 copy.jpg +0 -0
  373. data/samples/processing_app/topics/advanced_data/data/a058 copy.jpg +0 -0
  374. data/samples/processing_app/topics/advanced_data/data/a059 copy.jpg +0 -0
  375. data/samples/processing_app/topics/advanced_data/data/a060 copy.jpg +0 -0
  376. data/samples/processing_app/topics/advanced_data/data/a061 copy.jpg +0 -0
  377. data/samples/processing_app/topics/advanced_data/data/a062 copy.jpg +0 -0
  378. data/samples/processing_app/topics/advanced_data/data/a063 copy.jpg +0 -0
  379. data/samples/processing_app/topics/advanced_data/data/a064 copy.jpg +0 -0
  380. data/samples/processing_app/topics/advanced_data/data/a065 copy.jpg +0 -0
  381. data/samples/processing_app/topics/advanced_data/data/a066 copy.jpg +0 -0
  382. data/samples/processing_app/topics/advanced_data/data/a067 copy.jpg +0 -0
  383. data/samples/processing_app/topics/advanced_data/data/a068 copy.jpg +0 -0
  384. data/samples/processing_app/topics/advanced_data/data/a069 copy.jpg +0 -0
  385. data/samples/processing_app/topics/advanced_data/data/a070 copy.jpg +0 -0
  386. data/samples/processing_app/topics/advanced_data/data/a071 copy.jpg +0 -0
  387. data/samples/processing_app/topics/advanced_data/data/a072 copy.jpg +0 -0
  388. data/samples/processing_app/topics/advanced_data/data/a073 copy.jpg +0 -0
  389. data/samples/processing_app/topics/advanced_data/data/a074 copy.jpg +0 -0
  390. data/samples/processing_app/topics/advanced_data/data/a075 copy.jpg +0 -0
  391. data/samples/processing_app/topics/advanced_data/data/a076 copy.jpg +0 -0
  392. data/samples/processing_app/topics/advanced_data/data/a077 copy.jpg +0 -0
  393. data/samples/processing_app/topics/advanced_data/data/a078 copy.jpg +0 -0
  394. data/samples/processing_app/topics/advanced_data/data/a079 copy.jpg +0 -0
  395. data/samples/processing_app/topics/advanced_data/data/a080 copy.jpg +0 -0
  396. data/samples/processing_app/topics/advanced_data/data/a081 copy.jpg +0 -0
  397. data/samples/processing_app/topics/advanced_data/data/a082 copy.jpg +0 -0
  398. data/samples/processing_app/topics/advanced_data/data/a083 copy.jpg +0 -0
  399. data/samples/processing_app/topics/advanced_data/data/a084 copy.jpg +0 -0
  400. data/samples/processing_app/topics/advanced_data/data/a085 copy.jpg +0 -0
  401. data/samples/processing_app/topics/advanced_data/data/a086 copy.jpg +0 -0
  402. data/samples/processing_app/topics/advanced_data/data/a087 copy.jpg +0 -0
  403. data/samples/processing_app/topics/advanced_data/data/a088 copy.jpg +0 -0
  404. data/samples/processing_app/topics/advanced_data/data/a089 copy.jpg +0 -0
  405. data/samples/processing_app/topics/advanced_data/data/a090 copy.jpg +0 -0
  406. data/samples/processing_app/topics/advanced_data/data/a091 copy.jpg +0 -0
  407. data/samples/processing_app/topics/advanced_data/data/a092 copy.jpg +0 -0
  408. data/samples/processing_app/topics/advanced_data/data/a093 copy.jpg +0 -0
  409. data/samples/processing_app/topics/advanced_data/data/a094 copy.jpg +0 -0
  410. data/samples/processing_app/topics/advanced_data/data/a095 copy.jpg +0 -0
  411. data/samples/processing_app/topics/advanced_data/data/a096 copy.jpg +0 -0
  412. data/samples/processing_app/topics/advanced_data/data/a097 copy.jpg +0 -0
  413. data/samples/processing_app/topics/advanced_data/data/a098 copy.jpg +0 -0
  414. data/samples/processing_app/topics/advanced_data/data/a099 copy.jpg +0 -0
  415. data/samples/processing_app/topics/advanced_data/data/a100 copy.jpg +0 -0
  416. data/samples/processing_app/topics/advanced_data/data/a101 copy.jpg +0 -0
  417. data/samples/processing_app/topics/advanced_data/data/a102 copy.jpg +0 -0
  418. data/samples/processing_app/topics/advanced_data/data/a103 copy.jpg +0 -0
  419. data/samples/processing_app/topics/advanced_data/data/a104 copy.jpg +0 -0
  420. data/samples/processing_app/topics/advanced_data/data/a105 copy.jpg +0 -0
  421. data/samples/processing_app/topics/advanced_data/data/a106 copy.jpg +0 -0
  422. data/samples/processing_app/topics/advanced_data/data/a107 copy.jpg +0 -0
  423. data/samples/processing_app/topics/advanced_data/data/a108 copy.jpg +0 -0
  424. data/samples/processing_app/topics/advanced_data/data/a109 copy.jpg +0 -0
  425. data/samples/processing_app/topics/advanced_data/data/a110 copy.jpg +0 -0
  426. data/samples/processing_app/topics/advanced_data/data/a111 copy.jpg +0 -0
  427. data/samples/processing_app/topics/advanced_data/data/a112 copy.jpg +0 -0
  428. data/samples/processing_app/topics/advanced_data/data/a113 copy.jpg +0 -0
  429. data/samples/processing_app/topics/advanced_data/data/a114 copy.jpg +0 -0
  430. data/samples/processing_app/topics/advanced_data/data/a115 copy.jpg +0 -0
  431. data/samples/processing_app/topics/advanced_data/data/data.csv +5 -0
  432. data/samples/processing_app/topics/advanced_data/data/data.json +36 -0
  433. data/samples/processing_app/topics/advanced_data/data/data.xml +38 -0
  434. data/samples/processing_app/topics/advanced_data/data/data.yml +22 -0
  435. data/samples/processing_app/topics/advanced_data/data/dracula.txt +16624 -0
  436. data/samples/processing_app/topics/advanced_data/data/frankenstein.txt +7652 -0
  437. data/samples/processing_app/topics/advanced_data/data/struct_data.yml +22 -0
  438. data/samples/processing_app/topics/advanced_data/library/bubble/bubble.rb +45 -0
  439. data/samples/processing_app/topics/advanced_data/library/word/word.rb +64 -0
  440. data/samples/processing_app/topics/advanced_data/load_save_XML.rb +114 -0
  441. data/samples/processing_app/topics/advanced_data/load_save_json.rb +93 -0
  442. data/samples/processing_app/topics/advanced_data/load_save_struct_yaml.rb +85 -0
  443. data/samples/processing_app/topics/advanced_data/load_save_table.rb +85 -0
  444. data/samples/processing_app/topics/advanced_data/load_save_yaml.rb +89 -0
  445. data/samples/processing_app/topics/advanced_data/regex.rb +47 -0
  446. data/samples/processing_app/topics/advanced_data/threads.rb +96 -0
  447. data/samples/processing_app/topics/advanced_data/threads_two.rb +52 -0
  448. data/samples/processing_app/topics/advanced_data/word_frequency.rb +78 -0
  449. data/samples/processing_app/topics/advanced_data/yahoo_weather.rb +38 -0
  450. data/samples/processing_app/topics/animation/README.txt +1 -0
  451. data/samples/processing_app/topics/animation/animated_sprite.rb +58 -0
  452. data/samples/processing_app/topics/animation/data/PT_Shifty_0000.gif +0 -0
  453. data/samples/processing_app/topics/animation/data/PT_Shifty_0001.gif +0 -0
  454. data/samples/processing_app/topics/animation/data/PT_Shifty_0002.gif +0 -0
  455. data/samples/processing_app/topics/animation/data/PT_Shifty_0003.gif +0 -0
  456. data/samples/processing_app/topics/animation/data/PT_Shifty_0004.gif +0 -0
  457. data/samples/processing_app/topics/animation/data/PT_Shifty_0005.gif +0 -0
  458. data/samples/processing_app/topics/animation/data/PT_Shifty_0006.gif +0 -0
  459. data/samples/processing_app/topics/animation/data/PT_Shifty_0007.gif +0 -0
  460. data/samples/processing_app/topics/animation/data/PT_Shifty_0008.gif +0 -0
  461. data/samples/processing_app/topics/animation/data/PT_Shifty_0009.gif +0 -0
  462. data/samples/processing_app/topics/animation/data/PT_Shifty_0010.gif +0 -0
  463. data/samples/processing_app/topics/animation/data/PT_Shifty_0011.gif +0 -0
  464. data/samples/processing_app/topics/animation/data/PT_Shifty_0012.gif +0 -0
  465. data/samples/processing_app/topics/animation/data/PT_Shifty_0013.gif +0 -0
  466. data/samples/processing_app/topics/animation/data/PT_Shifty_0014.gif +0 -0
  467. data/samples/processing_app/topics/animation/data/PT_Shifty_0015.gif +0 -0
  468. data/samples/processing_app/topics/animation/data/PT_Shifty_0016.gif +0 -0
  469. data/samples/processing_app/topics/animation/data/PT_Shifty_0017.gif +0 -0
  470. data/samples/processing_app/topics/animation/data/PT_Shifty_0018.gif +0 -0
  471. data/samples/processing_app/topics/animation/data/PT_Shifty_0019.gif +0 -0
  472. data/samples/processing_app/topics/animation/data/PT_Shifty_0020.gif +0 -0
  473. data/samples/processing_app/topics/animation/data/PT_Shifty_0021.gif +0 -0
  474. data/samples/processing_app/topics/animation/data/PT_Shifty_0022.gif +0 -0
  475. data/samples/processing_app/topics/animation/data/PT_Shifty_0023.gif +0 -0
  476. data/samples/processing_app/topics/animation/data/PT_Shifty_0024.gif +0 -0
  477. data/samples/processing_app/topics/animation/data/PT_Shifty_0025.gif +0 -0
  478. data/samples/processing_app/topics/animation/data/PT_Shifty_0026.gif +0 -0
  479. data/samples/processing_app/topics/animation/data/PT_Shifty_0027.gif +0 -0
  480. data/samples/processing_app/topics/animation/data/PT_Shifty_0028.gif +0 -0
  481. data/samples/processing_app/topics/animation/data/PT_Shifty_0029.gif +0 -0
  482. data/samples/processing_app/topics/animation/data/PT_Shifty_0030.gif +0 -0
  483. data/samples/processing_app/topics/animation/data/PT_Shifty_0031.gif +0 -0
  484. data/samples/processing_app/topics/animation/data/PT_Shifty_0032.gif +0 -0
  485. data/samples/processing_app/topics/animation/data/PT_Shifty_0033.gif +0 -0
  486. data/samples/processing_app/topics/animation/data/PT_Shifty_0034.gif +0 -0
  487. data/samples/processing_app/topics/animation/data/PT_Shifty_0035.gif +0 -0
  488. data/samples/processing_app/topics/animation/data/PT_Shifty_0036.gif +0 -0
  489. data/samples/processing_app/topics/animation/data/PT_Shifty_0037.gif +0 -0
  490. data/samples/processing_app/topics/animation/data/PT_Teddy_0000.gif +0 -0
  491. data/samples/processing_app/topics/animation/data/PT_Teddy_0001.gif +0 -0
  492. data/samples/processing_app/topics/animation/data/PT_Teddy_0002.gif +0 -0
  493. data/samples/processing_app/topics/animation/data/PT_Teddy_0003.gif +0 -0
  494. data/samples/processing_app/topics/animation/data/PT_Teddy_0004.gif +0 -0
  495. data/samples/processing_app/topics/animation/data/PT_Teddy_0005.gif +0 -0
  496. data/samples/processing_app/topics/animation/data/PT_Teddy_0006.gif +0 -0
  497. data/samples/processing_app/topics/animation/data/PT_Teddy_0007.gif +0 -0
  498. data/samples/processing_app/topics/animation/data/PT_Teddy_0008.gif +0 -0
  499. data/samples/processing_app/topics/animation/data/PT_Teddy_0009.gif +0 -0
  500. data/samples/processing_app/topics/animation/data/PT_Teddy_0010.gif +0 -0
  501. data/samples/processing_app/topics/animation/data/PT_Teddy_0011.gif +0 -0
  502. data/samples/processing_app/topics/animation/data/PT_Teddy_0012.gif +0 -0
  503. data/samples/processing_app/topics/animation/data/PT_Teddy_0013.gif +0 -0
  504. data/samples/processing_app/topics/animation/data/PT_Teddy_0014.gif +0 -0
  505. data/samples/processing_app/topics/animation/data/PT_Teddy_0015.gif +0 -0
  506. data/samples/processing_app/topics/animation/data/PT_Teddy_0016.gif +0 -0
  507. data/samples/processing_app/topics/animation/data/PT_Teddy_0017.gif +0 -0
  508. data/samples/processing_app/topics/animation/data/PT_Teddy_0018.gif +0 -0
  509. data/samples/processing_app/topics/animation/data/PT_Teddy_0019.gif +0 -0
  510. data/samples/processing_app/topics/animation/data/PT_Teddy_0020.gif +0 -0
  511. data/samples/processing_app/topics/animation/data/PT_Teddy_0021.gif +0 -0
  512. data/samples/processing_app/topics/animation/data/PT_Teddy_0022.gif +0 -0
  513. data/samples/processing_app/topics/animation/data/PT_Teddy_0023.gif +0 -0
  514. data/samples/processing_app/topics/animation/data/PT_Teddy_0024.gif +0 -0
  515. data/samples/processing_app/topics/animation/data/PT_Teddy_0025.gif +0 -0
  516. data/samples/processing_app/topics/animation/data/PT_Teddy_0026.gif +0 -0
  517. data/samples/processing_app/topics/animation/data/PT_Teddy_0027.gif +0 -0
  518. data/samples/processing_app/topics/animation/data/PT_Teddy_0028.gif +0 -0
  519. data/samples/processing_app/topics/animation/data/PT_Teddy_0029.gif +0 -0
  520. data/samples/processing_app/topics/animation/data/PT_Teddy_0030.gif +0 -0
  521. data/samples/processing_app/topics/animation/data/PT_Teddy_0031.gif +0 -0
  522. data/samples/processing_app/topics/animation/data/PT_Teddy_0032.gif +0 -0
  523. data/samples/processing_app/topics/animation/data/PT_Teddy_0033.gif +0 -0
  524. data/samples/processing_app/topics/animation/data/PT_Teddy_0034.gif +0 -0
  525. data/samples/processing_app/topics/animation/data/PT_Teddy_0035.gif +0 -0
  526. data/samples/processing_app/topics/animation/data/PT_Teddy_0036.gif +0 -0
  527. data/samples/processing_app/topics/animation/data/PT_Teddy_0037.gif +0 -0
  528. data/samples/processing_app/topics/animation/data/PT_Teddy_0038.gif +0 -0
  529. data/samples/processing_app/topics/animation/data/PT_Teddy_0039.gif +0 -0
  530. data/samples/processing_app/topics/animation/data/PT_Teddy_0040.gif +0 -0
  531. data/samples/processing_app/topics/animation/data/PT_Teddy_0041.gif +0 -0
  532. data/samples/processing_app/topics/animation/data/PT_Teddy_0042.gif +0 -0
  533. data/samples/processing_app/topics/animation/data/PT_Teddy_0043.gif +0 -0
  534. data/samples/processing_app/topics/animation/data/PT_Teddy_0044.gif +0 -0
  535. data/samples/processing_app/topics/animation/data/PT_Teddy_0045.gif +0 -0
  536. data/samples/processing_app/topics/animation/data/PT_Teddy_0046.gif +0 -0
  537. data/samples/processing_app/topics/animation/data/PT_Teddy_0047.gif +0 -0
  538. data/samples/processing_app/topics/animation/data/PT_Teddy_0048.gif +0 -0
  539. data/samples/processing_app/topics/animation/data/PT_Teddy_0049.gif +0 -0
  540. data/samples/processing_app/topics/animation/data/PT_Teddy_0050.gif +0 -0
  541. data/samples/processing_app/topics/animation/data/PT_Teddy_0051.gif +0 -0
  542. data/samples/processing_app/topics/animation/data/PT_Teddy_0052.gif +0 -0
  543. data/samples/processing_app/topics/animation/data/PT_Teddy_0053.gif +0 -0
  544. data/samples/processing_app/topics/animation/data/PT_Teddy_0054.gif +0 -0
  545. data/samples/processing_app/topics/animation/data/PT_Teddy_0055.gif +0 -0
  546. data/samples/processing_app/topics/animation/data/PT_Teddy_0056.gif +0 -0
  547. data/samples/processing_app/topics/animation/data/PT_Teddy_0057.gif +0 -0
  548. data/samples/processing_app/topics/animation/data/PT_Teddy_0058.gif +0 -0
  549. data/samples/processing_app/topics/animation/data/PT_Teddy_0059.gif +0 -0
  550. data/samples/processing_app/topics/animation/data/PT_anim0000.gif +0 -0
  551. data/samples/processing_app/topics/animation/data/PT_anim0001.gif +0 -0
  552. data/samples/processing_app/topics/animation/data/PT_anim0002.gif +0 -0
  553. data/samples/processing_app/topics/animation/data/PT_anim0003.gif +0 -0
  554. data/samples/processing_app/topics/animation/data/PT_anim0004.gif +0 -0
  555. data/samples/processing_app/topics/animation/data/PT_anim0005.gif +0 -0
  556. data/samples/processing_app/topics/animation/data/PT_anim0006.gif +0 -0
  557. data/samples/processing_app/topics/animation/data/PT_anim0007.gif +0 -0
  558. data/samples/processing_app/topics/animation/data/PT_anim0008.gif +0 -0
  559. data/samples/processing_app/topics/animation/data/PT_anim0009.gif +0 -0
  560. data/samples/processing_app/topics/animation/data/PT_anim0010.gif +0 -0
  561. data/samples/processing_app/topics/animation/data/PT_anim0011.gif +0 -0
  562. data/samples/processing_app/topics/animation/sequential.rb +42 -0
  563. data/samples/processing_app/topics/cellular_automata/game_of_life.rb +125 -0
  564. data/samples/processing_app/topics/cellular_automata/library/ca/ca.rb +91 -0
  565. data/samples/processing_app/topics/cellular_automata/library/cell/cell.rb +99 -0
  566. data/samples/processing_app/topics/cellular_automata/library/simple_cell/simple_cell.rb +46 -0
  567. data/samples/processing_app/topics/cellular_automata/spore1.rb +94 -0
  568. data/samples/processing_app/topics/cellular_automata/spore2.rb +101 -0
  569. data/samples/processing_app/topics/cellular_automata/wolfram.rb +42 -0
  570. data/samples/processing_app/topics/create_shapes/begin_end_contour.rb +44 -0
  571. data/samples/processing_app/topics/create_shapes/data/sprite.png +0 -0
  572. data/samples/processing_app/topics/create_shapes/group_pshape.rb +69 -0
  573. data/samples/processing_app/topics/create_shapes/library/particle/particle_system.rb +107 -0
  574. data/samples/processing_app/topics/create_shapes/library/polygon/polygon.rb +35 -0
  575. data/samples/processing_app/topics/create_shapes/library/star/star.rb +47 -0
  576. data/samples/processing_app/topics/create_shapes/library/wiggler/wiggler.rb +57 -0
  577. data/samples/processing_app/topics/create_shapes/particle_system_pshape.rb +38 -0
  578. data/samples/processing_app/topics/create_shapes/path_pshape.rb +38 -0
  579. data/samples/processing_app/topics/create_shapes/polygon_pshape_oo3.rb +56 -0
  580. data/samples/processing_app/topics/create_shapes/polygon_pshape_oop.rb +29 -0
  581. data/samples/processing_app/topics/create_shapes/polygon_pshape_oop2.rb +52 -0
  582. data/samples/processing_app/topics/create_shapes/polygon_shape.rb +42 -0
  583. data/samples/processing_app/topics/create_shapes/primitive_pshape.rb +29 -0
  584. data/samples/processing_app/topics/create_shapes/wiggle_pshape.rb +22 -0
  585. data/samples/processing_app/topics/drawing/continuous_lines.rb +17 -0
  586. data/samples/processing_app/topics/drawing/pattern.rb +30 -0
  587. data/samples/processing_app/topics/drawing/pulses.rb +33 -0
  588. data/samples/processing_app/topics/drawing/scribble_plotter.rb +77 -0
  589. data/samples/processing_app/topics/effects/lens.rb +68 -70
  590. data/samples/processing_app/topics/file_io/data/positions.txt +206 -0
  591. data/samples/processing_app/topics/file_io/load_file1.rb +32 -0
  592. data/samples/processing_app/topics/file_io/save_frames.rb +70 -0
  593. data/samples/processing_app/topics/file_io/save_one_image.rb +22 -0
  594. data/samples/processing_app/topics/file_io/tile_images.rb +37 -0
  595. data/samples/processing_app/topics/gui/button.rb +74 -0
  596. data/samples/processing_app/topics/gui/data/seedBottom.jpg +0 -0
  597. data/samples/processing_app/topics/gui/data/seedTop.jpg +0 -0
  598. data/samples/processing_app/topics/gui/handles.rb +108 -0
  599. data/samples/processing_app/topics/gui/rollover.rb +63 -0
  600. data/samples/processing_app/topics/gui/scrollbar.rb +96 -0
  601. data/samples/processing_app/topics/image_processing/blending.rb +82 -0
  602. data/samples/processing_app/topics/image_processing/blur.rb +50 -0
  603. data/samples/processing_app/topics/image_processing/brightness.rb +39 -0
  604. data/samples/processing_app/topics/image_processing/convolution.rb +72 -0
  605. data/samples/processing_app/{3D/image → topics/image_processing}/data/eames.jpg +0 -0
  606. data/samples/processing_app/topics/image_processing/data/frontier.jpg +0 -0
  607. data/samples/processing_app/topics/image_processing/data/java_args.txt +3 -0
  608. data/samples/processing_app/topics/image_processing/data/layer1.jpg +0 -0
  609. data/samples/processing_app/topics/image_processing/data/layer2.jpg +0 -0
  610. data/samples/processing_app/topics/image_processing/data/moon-wide.jpg +0 -0
  611. data/samples/processing_app/topics/image_processing/data/moon.jpg +0 -0
  612. data/samples/processing_app/topics/image_processing/data/sea.jpg +0 -0
  613. data/samples/processing_app/topics/image_processing/data/ystone08.jpg +0 -0
  614. data/samples/processing_app/topics/image_processing/edge_detection.rb +47 -0
  615. data/samples/processing_app/topics/image_processing/explode.rb +35 -0
  616. data/samples/processing_app/topics/image_processing/extrusion.rb +49 -0
  617. data/samples/processing_app/topics/image_processing/histogram.rb +43 -0
  618. data/samples/processing_app/topics/image_processing/linear_image.rb +45 -0
  619. data/samples/processing_app/topics/image_processing/pixel_array.rb +48 -0
  620. data/samples/processing_app/topics/image_processing/zoom.rb +66 -0
  621. data/samples/processing_app/topics/lsystems/chequer.rb +72 -0
  622. data/samples/processing_app/topics/lsystems/csplant.rb +100 -0
  623. data/samples/processing_app/topics/lsystems/cstest.rb +20 -0
  624. data/samples/processing_app/topics/lsystems/data/java_args.txt +3 -0
  625. data/samples/processing_app/topics/lsystems/david_tour.rb +77 -0
  626. data/samples/processing_app/topics/lsystems/koch.rb +29 -0
  627. data/samples/processing_app/topics/lsystems/library/cs_grammar/cs_grammar.rb +88 -0
  628. data/samples/processing_app/topics/lsystems/library/grammar/grammar.rb +33 -0
  629. data/samples/processing_app/topics/lsystems/library/koch/koch_fractal.rb +117 -0
  630. data/samples/processing_app/topics/lsystems/library/stochastic_grammar/stochastic_grammar.rb +58 -0
  631. data/samples/processing_app/topics/lsystems/mpeano.rb +83 -0
  632. data/samples/processing_app/topics/lsystems/peano.rb +78 -0
  633. data/samples/processing_app/topics/lsystems/penrose.rb +123 -0
  634. data/samples/processing_app/topics/lsystems/penrose_snowflake.rb +93 -0
  635. data/samples/processing_app/topics/lsystems/pentagonal.rb +103 -0
  636. data/samples/processing_app/topics/lsystems/snake_kolam.rb +93 -0
  637. data/samples/processing_app/topics/lsystems/stochastic_test.rb +99 -0
  638. data/samples/processing_app/topics/lsystems/three_d_tree.rb +108 -0
  639. data/samples/processing_app/topics/motion/bounce.rb +40 -0
  640. data/samples/processing_app/topics/motion/bouncy_bubbles.rb +96 -0
  641. data/samples/processing_app/topics/motion/brownian.rb +40 -0
  642. data/samples/processing_app/topics/motion/circle_collision.rb +185 -0
  643. data/samples/processing_app/topics/motion/cubes_in_cube.rb +64 -0
  644. data/samples/processing_app/topics/motion/data/java_args.txt +3 -0
  645. data/samples/processing_app/topics/motion/library/cube/cube.rb +128 -0
  646. data/samples/processing_app/topics/motion/library/ground/ground.rb +42 -0
  647. data/samples/processing_app/topics/motion/linear.rb +25 -0
  648. data/samples/processing_app/topics/motion/morph.rb +84 -0
  649. data/samples/processing_app/topics/motion/moving_on_curves.rb +46 -0
  650. data/samples/processing_app/topics/motion/puff.rb +78 -0
  651. data/samples/processing_app/topics/motion/reflection1.rb +107 -0
  652. data/samples/processing_app/topics/motion/reflection2.rb +122 -0
  653. data/samples/processing_app/topics/shaders/README +1 -0
  654. data/samples/processing_app/topics/shaders/blur_filter.rb +25 -0
  655. data/samples/processing_app/topics/shaders/bw_shader.rb +40 -0
  656. data/samples/processing_app/topics/shaders/conway.rb +26 -0
  657. data/samples/processing_app/topics/shaders/data/GlossyFrag.glsl +44 -0
  658. data/samples/processing_app/topics/shaders/data/GlossyVert.glsl +33 -0
  659. data/samples/processing_app/topics/shaders/data/Texture01.jpg +0 -0
  660. data/samples/processing_app/topics/shaders/data/Texture02.jpg +0 -0
  661. data/samples/processing_app/topics/shaders/data/ToonFrag.glsl +25 -0
  662. data/samples/processing_app/topics/shaders/data/ToonVert.glsl +31 -0
  663. data/samples/processing_app/topics/shaders/data/blur.glsl +42 -0
  664. data/samples/processing_app/topics/shaders/data/bwfrag.glsl +23 -0
  665. data/samples/processing_app/topics/shaders/data/conway.glsl +57 -0
  666. data/samples/processing_app/topics/shaders/data/cubemapfrag.glsl +1 -0
  667. data/samples/processing_app/topics/shaders/data/cubemapvert.glsl +1 -0
  668. data/samples/processing_app/topics/shaders/data/deform.glsl +31 -0
  669. data/samples/processing_app/topics/shaders/data/displaceFrag.glsl +8 -0
  670. data/samples/processing_app/topics/shaders/data/displaceVert.glsl +201 -0
  671. data/samples/processing_app/topics/shaders/data/edges.glsl +40 -0
  672. data/samples/processing_app/topics/shaders/data/java_args.txt +2 -0
  673. data/samples/processing_app/topics/shaders/data/lachoy.jpg +0 -0
  674. data/samples/processing_app/topics/shaders/data/landscape.glsl +352 -0
  675. data/samples/processing_app/topics/shaders/data/leaves.jpg +0 -0
  676. data/samples/processing_app/topics/shaders/data/mask.glsl +19 -0
  677. data/samples/processing_app/topics/shaders/data/monjori.glsl +30 -0
  678. data/samples/processing_app/topics/shaders/data/nebula.glsl +111 -0
  679. data/samples/processing_app/topics/shaders/data/sep_blur.glsl +59 -0
  680. data/samples/processing_app/topics/shaders/data/tex1.jpg +0 -0
  681. data/samples/processing_app/topics/shaders/deform.rb +28 -0
  682. data/samples/processing_app/topics/shaders/dome_projection.rb +143 -0
  683. data/samples/processing_app/topics/shaders/edge_detect.rb +30 -0
  684. data/samples/processing_app/topics/shaders/glossy_fish_eye.rb +63 -0
  685. data/samples/processing_app/topics/shaders/glsl_heightmap_noise.rb +122 -0
  686. data/samples/processing_app/topics/shaders/image_mask.rb +31 -0
  687. data/samples/processing_app/topics/shaders/landscape.rb +32 -0
  688. data/samples/processing_app/topics/shaders/monjori.rb +28 -0
  689. data/samples/processing_app/topics/shaders/nebula.rb +18 -0
  690. data/samples/processing_app/topics/shaders/sep_blur.rb +64 -0
  691. data/samples/processing_app/topics/shaders/toon_shading.rb +43 -0
  692. data/samples/processing_app/topics/simulate/README +1 -0
  693. data/samples/processing_app/topics/simulate/chain.rb +34 -38
  694. data/samples/processing_app/topics/simulate/data/java_args.txt +2 -0
  695. data/samples/processing_app/topics/simulate/data/texture.gif +0 -0
  696. data/samples/processing_app/topics/simulate/data/texture.png +0 -0
  697. data/samples/processing_app/topics/simulate/flocking.rb +32 -0
  698. data/samples/processing_app/topics/simulate/library/flock/flock.rb +206 -0
  699. data/samples/processing_app/topics/simulate/multiple_particle_systems.rb +122 -110
  700. data/samples/processing_app/topics/simulate/simple_particle_system.rb +63 -86
  701. data/samples/processing_app/topics/simulate/smoke_particle_system.rb +136 -0
  702. data/samples/processing_app/topics/simulate/spring.rb +65 -69
  703. data/samples/processing_app/topics/simulate/springs.rb +35 -36
  704. data/samples/processing_app/topics/vectors/acceleration_with_vectors.rb +77 -0
  705. data/samples/processing_app/topics/vectors/bouncing_ball.rb +49 -0
  706. data/samples/processing_app/topics/vectors/vector_math.rb +38 -0
  707. data/test/README.md +6 -0
  708. data/test/basic.rb +14 -0
  709. data/test/draw_ex.rb +12 -0
  710. data/test/graphics.rb +7 -0
  711. data/test/p2d.rb +14 -0
  712. data/test/p3d.rb +14 -0
  713. data/test/rp5_test.rb +77 -0
  714. data/test/setup_ex.rb +12 -0
  715. data/vendors/Rakefile +36 -0
  716. metadata +718 -231
  717. data/README +0 -64
  718. data/lib/core/core.jar +0 -0
  719. data/lib/core/jruby-complete.jar +0 -0
  720. data/lib/ruby-processing/exporters/applet_exporter.rb +0 -78
  721. data/lib/templates/applet/images/built_with.jpg +0 -0
  722. data/lib/templates/applet/images/ruby.jpg +0 -0
  723. data/lib/templates/applet/images/top.png +0 -0
  724. data/lib/templates/applet/index.html.erb +0 -113
  725. data/lib/templates/applet/library/library.txt +0 -1
  726. data/lib/templates/create/bare_sketch.rb.erb +0 -7
  727. data/library/dxf/library/dxf.jar +0 -0
  728. data/library/dxf/library/export.txt +0 -1
  729. data/library/javascript/library/export.txt +0 -8
  730. data/library/javascript/library/javascript.jar +0 -0
  731. data/library/minim/library/export.txt +0 -1
  732. data/library/minim/library/jl1.0.jar +0 -0
  733. data/library/minim/library/jsminim.jar +0 -0
  734. data/library/minim/library/minim-spi.jar +0 -0
  735. data/library/minim/library/minim.jar +0 -0
  736. data/library/minim/library/mp3spi1.9.4.jar +0 -0
  737. data/library/minim/library/tritonus_aos.jar +0 -0
  738. data/library/minim/library/tritonus_share.jar +0 -0
  739. data/library/net/library/export.txt +0 -1
  740. data/library/net/library/net.jar +0 -0
  741. data/library/opengl/library/export.txt +0 -10
  742. data/library/opengl/library/gluegen-rt.jar +0 -0
  743. data/library/opengl/library/jogl.jar +0 -0
  744. data/library/opengl/library/linux32/libgluegen-rt.so +0 -0
  745. data/library/opengl/library/linux32/libjogl.so +0 -0
  746. data/library/opengl/library/linux32/libjogl_awt.so +0 -0
  747. data/library/opengl/library/linux32/libjogl_cg.so +0 -0
  748. data/library/opengl/library/linux64/libgluegen-rt.so +0 -0
  749. data/library/opengl/library/linux64/libjogl.so +0 -0
  750. data/library/opengl/library/linux64/libjogl_awt.so +0 -0
  751. data/library/opengl/library/linux64/libjogl_cg.so +0 -0
  752. data/library/opengl/library/macosx/libgluegen-rt.jnilib +0 -0
  753. data/library/opengl/library/macosx/libjogl.jnilib +0 -0
  754. data/library/opengl/library/macosx/libjogl_awt.jnilib +0 -0
  755. data/library/opengl/library/macosx/libjogl_cg.jnilib +0 -0
  756. data/library/opengl/library/opengl.jar +0 -0
  757. data/library/opengl/library/windows32/gluegen-rt.dll +0 -0
  758. data/library/opengl/library/windows32/jogl.dll +0 -0
  759. data/library/opengl/library/windows32/jogl_awt.dll +0 -0
  760. data/library/opengl/library/windows32/jogl_cg.dll +0 -0
  761. data/library/opengl/library/windows64/gluegen-rt.dll +0 -0
  762. data/library/opengl/library/windows64/jogl.dll +0 -0
  763. data/library/opengl/library/windows64/jogl_awt.dll +0 -0
  764. data/library/opengl/library/windows64/jogl_cg.dll +0 -0
  765. data/library/pdf/library/export.txt +0 -1
  766. data/library/pdf/library/itext.jar +0 -0
  767. data/library/pdf/library/pdf.jar +0 -0
  768. data/library/serial/library/RXTXcomm.jar +0 -0
  769. data/library/serial/library/export.txt +0 -1
  770. data/library/serial/library/linux32/librxtxSerial.so +0 -0
  771. data/library/serial/library/linux64/librxtxSerial.so +0 -0
  772. data/library/serial/library/macosx/librxtxSerial.jnilib +0 -0
  773. data/library/serial/library/serial.jar +0 -0
  774. data/library/serial/library/windows32/rxtxSerial.dll +0 -0
  775. data/library/serial/library/windows64/rxtxSerial.dll +0 -0
  776. data/library/video/library/export.txt +0 -1
  777. data/library/video/library/video.jar +0 -0
  778. data/samples/anar/data/java_args.txt +0 -1
  779. data/samples/anar/extrusion.rb +0 -49
  780. data/samples/anar/l_system.rb +0 -86
  781. data/samples/anar/library/anar/anar.jar +0 -0
  782. data/samples/anar/many_shapes.rb +0 -98
  783. data/samples/peasy_cam/data/java_args.txt +0 -1
  784. data/samples/peasy_cam/hilbert_fractal.rb +0 -40
  785. data/samples/peasy_cam/library/PeasyCam/PeasyCam.jar +0 -0
  786. data/samples/processing_app/3D/camera/move_eye.rb +0 -29
  787. data/samples/processing_app/3D/camera/ortho_vs_perspective.rb +0 -38
  788. data/samples/processing_app/3D/form/brick_tower.rb +0 -86
  789. data/samples/processing_app/3D/form/cubic_grid.rb +0 -51
  790. data/samples/processing_app/3D/form/rgb_cube.rb +0 -88
  791. data/samples/processing_app/3D/form/shape_transform.rb +0 -94
  792. data/samples/processing_app/3D/form/toroid.rb +0 -130
  793. data/samples/processing_app/3D/form/vertices.rb +0 -81
  794. data/samples/processing_app/3D/image/explode.rb +0 -56
  795. data/samples/processing_app/3D/image/extrusion.rb +0 -49
  796. data/samples/processing_app/3D/image/zoom.rb +0 -83
  797. data/samples/processing_app/3D/lights/directional.rb +0 -41
  798. data/samples/processing_app/3D/lights/lights1.rb +0 -39
  799. data/samples/processing_app/3D/lights/lights2.rb +0 -42
  800. data/samples/processing_app/3D/lights/reflection.rb +0 -38
  801. data/samples/processing_app/3D/lights/spot.rb +0 -39
  802. data/samples/processing_app/3D/textures/texture1.rb +0 -41
  803. data/samples/processing_app/3D/textures/texture2.rb +0 -38
  804. data/samples/processing_app/3D/textures/texture3.rb +0 -68
  805. data/samples/processing_app/3D/textures/texture_cube.rb +0 -106
  806. data/samples/processing_app/3D/transform/bird.rb +0 -61
  807. data/samples/processing_app/3D/transform/birds/birds.rb +0 -48
  808. data/samples/processing_app/3D/transform/cubes_in_cube/cubes_in_cube.rb +0 -102
  809. data/samples/processing_app/3D/transform/push_pop_cubes.rb +0 -152
  810. data/samples/processing_app/3D/transform/rotate1.rb +0 -43
  811. data/samples/processing_app/3D/transform/rotate2.rb +0 -45
  812. data/samples/processing_app/3D/typography/data/Univers66.vlw.gz +0 -0
  813. data/samples/processing_app/3D/typography/letter_k.rb +0 -136
  814. data/samples/processing_app/3D/typography/typing.rb +0 -77
  815. data/samples/processing_app/basics/data/characters_strings/characters_strings.rb +0 -85
  816. data/samples/processing_app/basics/data/characters_strings/data/Eureka-90.vlw +0 -0
  817. data/samples/processing_app/basics/data/characters_strings/data/rathausFrog.jpg +0 -0
  818. data/samples/processing_app/basics/input/keyboard_2.rb +0 -45
@@ -0,0 +1,27 @@
1
+ # Taken from processing discussion board, a little sketch by Amnon Owed
2
+ # Illustrates use of offscreen image, texture sampling, mouse_pressed?,
3
+ # load_pixels, displayWidth and displayHeight (do not snake case the last two)
4
+
5
+ SCALE = 5
6
+ COLOR_RANGE = 16581375 # 255 * 255 * 255
7
+ # full_screen # fill screen so no title bar
8
+
9
+ attr_reader :grid
10
+
11
+ def setup
12
+ size(displayWidth, displayHeight, P2D)
13
+ @grid = create_image(width/SCALE, height/SCALE, RGB)
14
+ g.texture_sampling(2) # 2 = POINT mode sampling
15
+ end
16
+
17
+ def draw
18
+ unless mouse_pressed?
19
+ grid.load_pixels
20
+ grid.pixels.length.times do |i|
21
+ grid.pixels[i] = rand(COLOR_RANGE)
22
+ end
23
+ grid.update_pixels
24
+ end
25
+ image(grid, 0, 0, width, height)
26
+ frame.set_title("#{frame_rate.to_i}+ fps")
27
+ end
@@ -1,49 +1,44 @@
1
- require 'ruby-processing'
2
1
 
3
- class SimpleBuffer < Processing::App
4
- def setup
5
-
6
- # With Processing, buffers allow you to draw off-screen to an image,
7
- # and then use that image in your sketch. This can speed up rendering
8
- # times quite a bit, as it's not only faster to draw off-screen, but
9
- # it also allows you to redraw only portions of the screen.
10
-
11
- # Ruby-Processing provides a convenience method, "buffer", which
12
- # sets up a buffer for you with the same width and height and
13
- # renderer as the current sketch, and yields it to you. It also
14
- # takes care of calling begin_draw and end_draw at the start and
15
- # end of the block. Use it like so:
16
-
17
- @buffer = buffer do |b|
18
- b.no_stroke
19
- b.fill 255, 0, 0
20
- b.rect 100, 200, 100, 100
21
- end
22
-
23
- # Those lines are equivalent to the following lines:
24
-
25
- @buffer_2 = create_graphics(500, 500, P3D)
26
- @buffer_2.begin_draw
27
- @buffer_2.no_stroke
28
- @buffer_2.fill(255, 0, 0)
29
- @buffer_2.rect(100, 200, 100, 100)
30
- @buffer_2.end_draw
31
-
32
- # If you'd like to set the size or renderer for the buffer block,
33
- # just pass it in like normal:
34
-
35
- @buffer_3 = buffer(150, 150, P3D) do |b|
36
- # b.whatever goes here.
37
- end
38
-
39
- # And now we go ahead and grab the rendered image from the first buffer.
40
- @img = @buffer.get(0, 0, @buffer.width, @buffer.height)
2
+ def setup
3
+
4
+ # With Processing, buffers allow you to draw off-screen to an image,
5
+ # and then use that image in your sketch. This can speed up rendering
6
+ # times quite a bit, as it's not only faster to draw off-screen, but
7
+ # it also allows you to redraw only portions of the screen.
8
+
9
+ # Ruby-Processing provides a convenience method, "buffer", which
10
+ # sets up a buffer for you with the same width and height and
11
+ # renderer as the current sketch, and yields it to you. It also
12
+ # takes care of calling begin_draw and end_draw at the start and
13
+ # end of the block. Use it like so:
14
+ size 800, 800, P2D
15
+ @buffer = buffer do |b|
16
+ b.no_stroke
17
+ b.fill 255, 0, 0
18
+ b.rect 100, 200, 100, 100
41
19
  end
42
20
 
43
- def draw
44
- background 0
45
- image @img, frame_count, 0
21
+ # Those lines are equivalent to the following lines:
22
+
23
+ @buffer_2 = create_graphics(500, 500, P2D)
24
+ @buffer_2.begin_draw
25
+ @buffer_2.no_stroke
26
+ @buffer_2.fill(255, 0, 0)
27
+ @buffer_2.rect(100, 200, 100, 100)
28
+ @buffer_2.end_draw
29
+
30
+ # If you'd like to set the size or renderer for the buffer block,
31
+ # just pass it in like normal:
32
+
33
+ @buffer_3 = buffer(150, 150, P2D) do |b|
34
+ # b.whatever goes here.
46
35
  end
36
+
37
+ # And now we go ahead and grab the rendered image from the first buffer.
38
+ @img = @buffer.get(0, 0, @buffer.width, @buffer.height)
47
39
  end
48
40
 
49
- SimpleBuffer.new :title => "Simple Buffer", :width => 500, :height => 500
41
+ def draw
42
+ background 0
43
+ image @img, frame_count, 0
44
+ end
@@ -1,83 +1,76 @@
1
1
  # http://processing.org/learning/topics/tree.html
2
2
  # by Joe Holt
3
3
 
4
- require 'ruby-processing'
4
+ def setup
5
+ size 200, 200
6
+ color_mode RGB, 1
7
+ frame_rate 30
8
+ smooth
9
+ @x = 0.0
10
+ @dx = width / 100
11
+ @start_time = Time.now
12
+ @frame_time = nil
13
+ end
5
14
 
6
- class Sketch < Processing::App
7
-
8
- def setup
9
- color_mode RGB, 1
10
- frameRate 30
11
- smooth
12
- @x = 0.0
13
- @dx = width / 100
14
- @start_time = Time.now
15
- @frame_time = nil
16
- end
15
+ def radians(x)
16
+ return x * (Math::PI / 180)
17
+ end
17
18
 
18
- def radians(x)
19
- return x * (Math::PI / 180)
19
+ def draw
20
+ t = Time.now
21
+ if @frame_time
22
+ fps = 1.0 / (t - @frame_time)
23
+ # printf "%0.1f fps\n", fps
20
24
  end
25
+ @frame_time = t
21
26
 
22
- def draw
23
- t = Time.now
24
- if @frame_time
25
- fps = 1.0 / (t - @frame_time)
26
- # printf "%0.1ffps\n", fps
27
- end
28
- @frame_time = t
29
-
30
- background 0
31
- stroke 1, 1, 1
32
- # Let's pick an angle 0 to 90 degrees based on the mouse position
33
- a = (@x / width) * 90
34
- # Convert it to radians
35
- @theta = radians(a)
36
- # Start the tree from the bottom of the screen
37
- translate(width/2,height)
38
- # Draw a line 60 pixels
39
- h = height / 3
40
- line(0,0,0,-h)
41
- # Move to the end of that line
42
- translate(0,-h)
43
- # Start the recursive branching!
44
- branch(h)
45
-
46
- @x += @dx
47
- if @x < 0
48
- puts "Time after this iteration: " + (Time.now - @start_time).to_s
49
- end
50
- if @x > width || @x < 0
51
- @dx = - @dx
52
- @x += @dx * 2
53
- end
27
+ background 0
28
+ stroke 1, 1, 1
29
+ # Let's pick an angle 0 to 90 degrees based on the mouse position
30
+ a = (@x / width) * 90
31
+ # Convert it to radians
32
+ @theta = radians(a)
33
+ # Start the tree from the bottom of the screen
34
+ translate(width / 2, height)
35
+ # Draw a line 60 pixels
36
+ h = height / 3
37
+ line(0, 0, 0, -h)
38
+ # Move to the end of that line
39
+ translate(0,-h)
40
+ # Start the recursive branching!
41
+ branch(h)
42
+
43
+ @x += @dx
44
+ if @x < 0
45
+ puts "Time after this iteration: " + (Time.now - @start_time).to_s
54
46
  end
55
-
56
- def branch(h)
57
- # Each branch will be 2/3rds the size of the previous one
58
- h *= 0.66;
59
-
60
- # All recursive functions must have an exit condition!!!!
61
- # Here, ours is when the length of the branch is 2 pixels or less
62
- if h > 2
63
- pushMatrix # Save the current state of transformation (i.e. where are we now)
64
- rotate(@theta) # Rotate by theta
65
- line(0,0,0,-h) # Draw the branch
66
- translate(0,-h) # Move to the end of the branch
67
- branch(h) # Ok, now call myself to draw two new branches!!
68
- popMatrix # Whenever we get back here, we "pop" in order to restore the previous matrix state
69
-
70
- # Repeat the same thing, only branch off to the "left" this time!
71
- pushMatrix
72
- rotate(- @theta)
73
- line(0,0,0,-h)
74
- translate(0,-h)
75
- branch(h)
76
- popMatrix
77
- end
47
+ if @x > width || @x < 0
48
+ @dx = - @dx
49
+ @x += @dx * 2
78
50
  end
51
+ end
79
52
 
53
+ def branch(h)
54
+ # Each branch will be 2/3rds the size of the previous one
55
+ h *= 0.66
56
+ # All recursive functions must have an exit condition!!!!
57
+ # Here, ours is when the length of the branch is 2 pixels or less
58
+ if h > 2
59
+ push_matrix # Save the current state of transformation (i.e. where are we now)
60
+ rotate(@theta) # Rotate by theta
61
+ line(0, 0, 0, -h) # Draw the branch
62
+ translate(0, -h) # Move to the end of the branch
63
+ branch(h) # Ok, now call myself to draw two new branches!!
64
+ pop_matrix # Whenever we get back here, we "pop" in order to restore the previous matrix state
65
+
66
+ # Repeat the same thing, only branch off to the "left" this time!
67
+ push_matrix
68
+ rotate(- @theta)
69
+ line(0, 0, 0, -h)
70
+ translate(0, -h)
71
+ branch(h)
72
+ pop_matrix
73
+ end
80
74
  end
81
75
 
82
76
 
83
- Sketch.new(:width => 200, :height => 200, :title => "Auto Tree")
@@ -0,0 +1,3 @@
1
+ Sketches in this folder demonstrate the use of contributed java libraries in ruby-processing the easiest thing is if the library is installed in your regular processing sketchbook/libraries folder.
2
+ To run the generativedesign sketches, you should have installed the generativedesign library either download from the processing ide or direct from:- http://www.generative-gestaltung.de/codes/generativedesign/index.html A library by Hartmut Bohnacker, Benedikt Groß. A library by Hartmut Bohnacker, Benedikt Groß. Goes with the book "Generative Gestaltung" http://www.generative-gestaltung.de/
3
+ To run the gray_scott examples you should install the toxiclibs collection by Karsten Schmidt aka toxi. For the other examples toxiclibscore volumeutils etc. To run the hemesh library samples you need the hemesh library version 1.8.1 (downloable via processing ide, as is the geomerative library).
@@ -0,0 +1 @@
1
+ For some reason several methods in the fisica ar not recongized when ruby-processing is run using the included jruby-complete. However at least on my linux box these examples run OK using an external jruby (version 1.7.3).
@@ -0,0 +1,80 @@
1
+ #
2
+ # Buttons and bodies
3
+ # by Ricard Marxer
4
+ # This example shows how to create a blob.
5
+ #
6
+ # set_fill and set_stroke methods are missing
7
+ # when run using builtin jruby-complete yet work
8
+ # OK when using an external jruby
9
+ #
10
+ load_library :fisica
11
+ include_package 'fisica'
12
+
13
+ CIRCLE_COUNT = 20
14
+ HOLE = 50
15
+ TOP_MARGIN = 50
16
+ BOTTOM_MARGIN = 300
17
+ SIDE_MARGIN = 100
18
+
19
+
20
+ attr_reader :world, :x_pos
21
+
22
+ def setup
23
+ size(400, 400)
24
+ smooth
25
+ @x_pos = 0
26
+ Fisica.init(self)
27
+ @world = FWorld.new
28
+ world.setGravity(0, -300)
29
+ l = FPoly.new
30
+ l.vertex(width/2-HOLE/2, 0)
31
+ l.vertex(0, 0)
32
+ l.vertex(0, height)
33
+ l.vertex(0 + SIDE_MARGIN, height)
34
+ l.vertex(0 + SIDE_MARGIN, height-BOTTOM_MARGIN)
35
+ l.vertex(width/2-HOLE/2, TOP_MARGIN)
36
+ l.set_static(true)
37
+ l.set_fill(0)
38
+ l.set_friction(0)
39
+ world.add(l)
40
+
41
+ r = FPoly.new
42
+ r.vertex(width/2 + HOLE/2, 0)
43
+ r.vertex(width, 0)
44
+ r.vertex(width, height)
45
+ r.vertex(width-SIDE_MARGIN, height)
46
+ r.vertex(width-SIDE_MARGIN, height-BOTTOM_MARGIN)
47
+ r.vertex(width/2 + HOLE/2, TOP_MARGIN)
48
+ r.set_static(true)
49
+ r.set_fill(0)
50
+ r.set_friction(0)
51
+ world.add(r)
52
+ end
53
+
54
+ def draw
55
+ background(80, 120, 200)
56
+ fill(0)
57
+ if ((frame_count % 40) == 1)
58
+ b = FBlob.new
59
+ s = rand(30 .. 40)
60
+ space = (width - SIDE_MARGIN * 2-s)
61
+ @x_pos = (x_pos + rand(s .. space/2.0)) % space
62
+ b.set_as_circle(SIDE_MARGIN + x_pos + s / 2, height - rand(100), s, 20)
63
+ b.set_stroke(0)
64
+ b.set_stroke_weight(2)
65
+ b.set_fill(255)
66
+ b.set_friction(0)
67
+ world.add(b)
68
+ end
69
+
70
+ world.step
71
+ world.draw
72
+ end
73
+
74
+
75
+ def key_pressed
76
+ save_frame("screenshot.png")
77
+ end
78
+
79
+
80
+
@@ -0,0 +1,112 @@
1
+ #
2
+ # Joints#
3
+ # by Ricard Marxer#
4
+ # This example shows how to access all the joints of a given body.
5
+ #
6
+ # converted to ruby-processing by Martin Prout
7
+ #
8
+
9
+ load_library :fisica
10
+ module Fis
11
+ java_import 'fisica.Fisica'
12
+ java_import 'fisica.FWorld'
13
+ java_import 'fisica.FCircle'
14
+ java_import 'fisica.FDistanceJoint'
15
+ java_import 'fisica.FJoint'
16
+ end
17
+
18
+ SPIDER_COUNT = 10
19
+ MAIN_SIZE = 40
20
+ LEG_COUNT = 10
21
+ LEG_SIZE = 100
22
+
23
+ attr_reader :world, :mains, :body_color, :hover_color
24
+
25
+ def setup
26
+ size(400, 400)
27
+ @body_color = color('#6E0595')
28
+ @hover_color = color('#F5B502')
29
+ smooth
30
+ @mains = []
31
+ Fis::Fisica.init(self)
32
+ @world = Fis::FWorld.new
33
+ world.set_edges
34
+ world.set_gravity(0, 0)
35
+
36
+ SPIDER_COUNT.times do
37
+ create_spider
38
+ end
39
+ end
40
+
41
+ def draw
42
+ background(255)
43
+ world.step
44
+ world.draw
45
+ end
46
+
47
+ def mouse_moved
48
+ hovered = world.get_body(mouse_x, mouse_y)
49
+ mains.each do |other|
50
+ if (hovered == other)
51
+ set_joints_drawable(other, true)
52
+ set_joints_color(other, hover_color)
53
+ else
54
+ set_joints_drawable(other, false)
55
+ set_joints_color(other, body_color)
56
+ end
57
+ end
58
+ end
59
+
60
+ def key_pressed
61
+ save_frame("screenshot.png")
62
+ end
63
+
64
+ def create_spider
65
+ pos_x = rand(MAIN_SIZE/2 .. width-MAIN_SIZE/2)
66
+ pos_y = rand(MAIN_SIZE/2 .. height-MAIN_SIZE/2)
67
+ main = Fis::FCircle.new(MAIN_SIZE)
68
+ main.set_position(pos_x, pos_y)
69
+ main.set_velocity(rand(-20 .. 20), rand(-20 .. 20))
70
+ main.set_fill_color(body_color)
71
+ main.set_no_stroke
72
+ main.set_group_index(2)
73
+ world.add(main)
74
+ mains << main
75
+
76
+ (0 ... LEG_COUNT).each do |i|
77
+ x = LEG_SIZE * cos(i * TAU/3) + pos_x
78
+ y = LEG_SIZE * sin(i * TAU/3) + pos_y
79
+ leg = Fis::FCircle.new(MAIN_SIZE/2)
80
+ leg.set_position(pos_x, pos_y)
81
+ leg.set_velocity(rand(-20 .. 20), rand(-20 ..20))
82
+ leg.set_fill_color(body_color)
83
+ leg.set_no_stroke
84
+ world.add(leg)
85
+ j = Fis::FDistanceJoint.new(main, leg)
86
+ j.set_length(LEG_SIZE)
87
+ j.set_no_stroke
88
+ j.set_stroke(0)
89
+ j.set_fill(0)
90
+ j.set_drawable(false)
91
+ j.set_frequency(0.1)
92
+ world.add(j)
93
+ end
94
+ end
95
+
96
+ def set_joints_color(b, c)
97
+ l = b.get_joints
98
+ l.each do |j|
99
+ j.set_stroke_color(c)
100
+ j.set_fill_color(c)
101
+ j.get_body1.set_fill_color(c)
102
+ j.get_body2.set_fill_color(c)
103
+ end
104
+ end
105
+
106
+ def set_joints_drawable(b, c)
107
+ l = b.get_joints
108
+ l.each do |j|
109
+ j.set_drawable(c)
110
+ end
111
+ end
112
+