ruby-processing 1.0.9 → 1.0.10.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +13 -1
- data/bin/rp5 +8 -2
- data/lib/core/core.jar +0 -0
- data/lib/core/jruby-complete.jar +0 -0
- data/lib/ruby-processing.rb +2 -2
- data/lib/ruby-processing/app.rb +108 -338
- data/lib/ruby-processing/config.rb +6 -0
- data/lib/ruby-processing/helper_methods.rb +120 -0
- data/lib/ruby-processing/library_loader.rb +140 -0
- data/lib/ruby-processing/runner.rb +34 -4
- data/lib/ruby-processing/runners/base.rb +10 -11
- data/lib/ruby-processing/runners/live.rb +1 -1
- data/lib/ruby-processing/runners/run.rb +1 -1
- data/lib/ruby-processing/runners/watch.rb +18 -76
- data/lib/templates/applet/index.html.erb +8 -9
- data/library/control_panel/control_panel.rb +1 -1
- data/library/dxf/library/dxf.jar +0 -0
- data/library/dxf/library/export.txt +1 -0
- data/library/javascript/library/export.txt +3 -1
- data/library/minim/library/export.txt +1 -0
- data/library/minim/library/jl1.0.jar +0 -0
- data/library/minim/library/jsminim.jar +0 -0
- data/library/minim/library/minim-spi.jar +0 -0
- data/library/minim/library/minim.jar +0 -0
- data/library/minim/library/mp3spi1.9.4.jar +0 -0
- data/library/minim/library/tritonus_aos.jar +0 -0
- data/library/minim/library/tritonus_share.jar +0 -0
- data/library/net/library/export.txt +1 -0
- data/library/net/library/net.jar +0 -0
- data/library/opengl/library/export.txt +7 -10
- data/library/opengl/library/gluegen-rt.jar +0 -0
- data/library/opengl/library/jogl.jar +0 -0
- data/library/opengl/library/{libgluegen-rt.so → linux32/libgluegen-rt.so} +0 -0
- data/library/opengl/library/{libjogl.so → linux32/libjogl.so} +0 -0
- data/library/opengl/library/{libjogl_awt.so → linux32/libjogl_awt.so} +0 -0
- data/library/opengl/library/{libjogl_cg.so → linux32/libjogl_cg.so} +0 -0
- data/library/opengl/library/linux64/libgluegen-rt.so +0 -0
- data/library/opengl/library/linux64/libjogl.so +0 -0
- data/library/opengl/library/linux64/libjogl_awt.so +0 -0
- data/library/opengl/library/linux64/libjogl_cg.so +0 -0
- data/library/opengl/library/{libgluegen-rt.jnilib → macosx/libgluegen-rt.jnilib} +0 -0
- data/library/opengl/library/{libjogl.jnilib → macosx/libjogl.jnilib} +0 -0
- data/library/opengl/library/{libjogl_awt.jnilib → macosx/libjogl_awt.jnilib} +0 -0
- data/library/opengl/library/{libjogl_cg.jnilib → macosx/libjogl_cg.jnilib} +0 -0
- data/library/opengl/library/opengl.jar +0 -0
- data/library/opengl/library/{gluegen-rt.dll → windows32/gluegen-rt.dll} +0 -0
- data/library/opengl/library/{jogl.dll → windows32/jogl.dll} +0 -0
- data/library/opengl/library/{jogl_awt.dll → windows32/jogl_awt.dll} +0 -0
- data/library/opengl/library/{jogl_cg.dll → windows32/jogl_cg.dll} +0 -0
- data/library/opengl/library/windows64/gluegen-rt.dll +0 -0
- data/library/opengl/library/windows64/jogl.dll +0 -0
- data/library/opengl/library/windows64/jogl_awt.dll +0 -0
- data/library/opengl/library/windows64/jogl_cg.dll +0 -0
- data/library/pdf/library/export.txt +1 -0
- data/library/pdf/library/itext.jar +0 -0
- data/library/pdf/library/pdf.jar +0 -0
- data/library/serial/library/RXTXcomm.jar +0 -0
- data/library/serial/library/export.txt +1 -3
- data/library/serial/library/linux32/librxtxSerial.so +0 -0
- data/library/serial/library/linux64/librxtxSerial.so +0 -0
- data/library/serial/library/macosx/librxtxSerial.jnilib +0 -0
- data/library/serial/library/serial.jar +0 -0
- data/library/serial/library/windows32/rxtxSerial.dll +0 -0
- data/library/serial/library/windows64/rxtxSerial.dll +0 -0
- data/library/video/library/export.txt +1 -0
- data/library/video/library/video.jar +0 -0
- data/samples/{animator.rb → contributed/animator.rb} +0 -0
- data/samples/{bezier_playground.rb → contributed/bezier_playground.rb} +0 -0
- data/samples/{circle_collision.rb → contributed/circle_collision.rb} +0 -0
- data/samples/contributed/drawolver.rb +182 -0
- data/samples/{empathy.rb → contributed/empathy.rb} +7 -7
- data/samples/{fern.rb → contributed/fern.rb} +0 -0
- data/samples/{flight_patterns.rb → contributed/flight_patterns.rb} +0 -0
- data/samples/{full_screen.rb → contributed/full_screen.rb} +0 -0
- data/samples/{getting_started.rb → contributed/getting_started.rb} +0 -0
- data/samples/{gravity.rb → contributed/gravity.rb} +0 -0
- data/samples/{jwishy.rb → contributed/jwishy.rb} +0 -0
- data/samples/{orbit.rb → contributed/orbit.rb} +0 -0
- data/samples/{pong.rb → contributed/pong.rb} +0 -0
- data/samples/{reflection.rb → contributed/reflection.rb} +0 -0
- data/samples/{simple_buffer.rb → contributed/simple_buffer.rb} +0 -0
- data/samples/{tree.rb → contributed/tree.rb} +0 -0
- data/samples/peasy_cam/library/hilbert/hilbert.rb +11 -10
- data/samples/processing_app/3D/camera/move_eye.rb +29 -0
- data/samples/processing_app/3D/form/brick_tower.rb +11 -11
- data/samples/processing_app/3D/form/cubic_grid.rb +51 -0
- data/samples/processing_app/3D/form/icosahedra/icosahedra.rb +76 -0
- data/samples/processing_app/3D/form/icosahedra/icosahedron.rb +116 -0
- data/samples/processing_app/3D/form/icosahedra/shape_3D.rb +25 -0
- data/samples/processing_app/3D/form/primitives.rb +42 -0
- data/samples/processing_app/3D/form/rgb_cube.rb +88 -0
- data/samples/processing_app/3D/form/shape_transform.rb +94 -0
- data/samples/processing_app/3D/form/toroid.rb +130 -0
- data/samples/processing_app/3D/form/vertices.rb +81 -0
- data/samples/processing_app/3D/image/data/eames.jpg +0 -0
- data/samples/processing_app/3D/image/data/ystone08.jpg +0 -0
- data/samples/processing_app/3D/image/explode.rb +56 -0
- data/samples/processing_app/3D/image/extrusion.rb +49 -0
- data/samples/processing_app/3D/image/zoom.rb +83 -0
- data/samples/processing_app/3D/lights/directional.rb +41 -0
- data/samples/processing_app/3D/lights/lights1.rb +39 -0
- data/samples/processing_app/3D/lights/lights2.rb +42 -0
- data/samples/processing_app/3D/lights/reflection.rb +38 -0
- data/samples/processing_app/3D/lights/spot.rb +39 -0
- data/samples/processing_app/3D/textures/data/berlin-1.jpg +0 -0
- data/samples/processing_app/3D/textures/texture1.rb +41 -0
- data/samples/processing_app/3D/textures/texture2.rb +38 -0
- data/samples/processing_app/3D/textures/texture3.rb +68 -0
- data/samples/processing_app/3D/textures/texture_cube.rb +106 -0
- data/samples/processing_app/3D/transform/bird.rb +61 -0
- data/samples/processing_app/3D/transform/birds/bird.rb +87 -0
- data/samples/processing_app/3D/transform/birds/birds.rb +48 -0
- data/samples/processing_app/3D/transform/cubes_in_cube/cube.rb +57 -0
- data/samples/processing_app/3D/transform/cubes_in_cube/cubes_in_cube.rb +102 -0
- data/samples/processing_app/3D/transform/push_pop_cubes.rb +152 -0
- data/samples/processing_app/3D/transform/rotate1.rb +43 -0
- data/samples/processing_app/3D/transform/rotate2.rb +45 -0
- data/samples/processing_app/3D/typography/data/Univers45.vlw +0 -0
- data/samples/processing_app/3D/typography/letter_k.rb +136 -0
- data/samples/processing_app/3D/typography/typing.rb +77 -0
- data/samples/processing_app/basics/form/triangle_strip.rb +19 -19
- data/samples/processing_app/basics/math/distance1.rb +59 -0
- data/samples/processing_app/basics/math/distance2.rb +38 -0
- data/samples/processing_app/basics/math/double_random.rb +38 -0
- data/samples/processing_app/basics/math/graphing_2_d_equation.rb +53 -0
- data/samples/processing_app/basics/math/increment_decrement.rb +59 -0
- data/samples/processing_app/basics/math/modulo.rb +43 -0
- data/samples/processing_app/basics/math/noise_1_d.rb +37 -0
- data/samples/processing_app/basics/math/noise_2_d.rb +47 -0
- data/samples/processing_app/basics/math/noise_3_d.rb +50 -0
- data/samples/processing_app/basics/math/noise_wave.rb +61 -0
- data/samples/processing_app/basics/math/operator_precedence.rb +70 -0
- data/samples/processing_app/basics/math/polar_to_cartesian.rb +44 -0
- data/samples/processing_app/basics/math/random.rb +35 -0
- data/samples/processing_app/basics/math/sine.rb +49 -0
- data/samples/processing_app/basics/math/sine_cosine.rb +60 -0
- data/samples/processing_app/basics/math/sine_wave.rb +62 -0
- data/samples/processing_app/basics/objects/composite_objects.rb +139 -0
- data/samples/processing_app/basics/objects/inheritance.rb +104 -0
- data/samples/processing_app/basics/objects/multiple_constructors.rb +66 -0
- data/samples/processing_app/basics/objects/objects.rb +72 -0
- data/samples/processing_app/basics/shape/data/bot1.svg +160 -0
- data/samples/processing_app/basics/shape/data/usa-wikipedia.svg +452 -0
- data/samples/processing_app/basics/shape/disable_style.rb +36 -0
- data/samples/processing_app/basics/shape/get_child.rb +43 -0
- data/samples/processing_app/basics/shape/load_display_shape.rb +33 -0
- data/samples/processing_app/basics/shape/scale_shape.rb +33 -0
- data/samples/processing_app/basics/structure/coordinates.rb +55 -0
- data/samples/processing_app/basics/structure/create_graphics.rb +39 -0
- data/samples/processing_app/basics/structure/functions.rb +41 -0
- data/samples/processing_app/basics/structure/loop.rb +39 -0
- data/samples/processing_app/basics/structure/noloop.rb +33 -0
- data/samples/processing_app/basics/structure/recursion1.rb +42 -0
- data/samples/processing_app/basics/structure/recursion2.rb +39 -0
- data/samples/processing_app/basics/structure/redraw.rb +36 -0
- data/samples/processing_app/basics/structure/setup_draw.rb +30 -0
- data/samples/processing_app/basics/structure/statements_comments.rb +32 -0
- data/samples/processing_app/basics/structure/width_height.rb +29 -0
- data/samples/processing_app/basics/transform/arm.rb +47 -0
- data/samples/processing_app/basics/transform/rotate.rb +43 -0
- data/samples/processing_app/basics/transform/scale.rb +45 -0
- data/samples/processing_app/basics/transform/translate.rb +41 -0
- data/samples/processing_app/basics/transform/triangle_flower.rb +69 -0
- data/samples/processing_app/basics/typography/data/CourierNew36.vlw +0 -0
- data/samples/processing_app/basics/typography/data/Ziggurat-HTF-Black-32.vlw +0 -0
- data/samples/processing_app/basics/typography/letters.rb +52 -0
- data/samples/processing_app/basics/typography/words.rb +37 -0
- data/samples/processing_app/basics/web/embedded_links.rb +58 -0
- data/samples/processing_app/basics/web/loading_images.rb +25 -0
- metadata +181 -86
- data/lib/patches/JRubyApplet.diff +0 -24
- data/lib/patches/PATCHES.txt +0 -3
- data/lib/patches/PApplet.diff +0 -27
- data/library/minim/license.txt +0 -339
- data/library/minim/version.txt +0 -1
- data/library/opengl/library/gluegen-rt-natives-linux-amd64.jar +0 -0
- data/library/opengl/library/gluegen-rt-natives-linux-i586.jar +0 -0
- data/library/opengl/library/gluegen-rt-natives-macosx-ppc.jar +0 -0
- data/library/opengl/library/gluegen-rt-natives-macosx-universal.jar +0 -0
- data/library/opengl/library/gluegen-rt-natives-windows-amd64.jar +0 -0
- data/library/opengl/library/gluegen-rt-natives-windows-i586.jar +0 -0
- data/library/opengl/library/gluegen-rt.jar.pack.gz +0 -0
- data/library/opengl/library/jogl-natives-linux-amd64.jar +0 -0
- data/library/opengl/library/jogl-natives-linux-i586.jar +0 -0
- data/library/opengl/library/jogl-natives-macosx-ppc.jar +0 -0
- data/library/opengl/library/jogl-natives-macosx-universal.jar +0 -0
- data/library/opengl/library/jogl-natives-windows-amd64.jar +0 -0
- data/library/opengl/library/jogl-natives-windows-i586.jar +0 -0
- data/library/opengl/library/jogl.jar.pack.gz +0 -0
- data/library/pdf/notes.txt +0 -8
- data/library/serial/library/librxtxSerial.jnilib +0 -0
- data/library/serial/library/librxtxSerial.so +0 -0
- data/library/serial/library/rxtxSerial.dll +0 -0
@@ -0,0 +1,58 @@
|
|
1
|
+
# Loading URLs.
|
2
|
+
#
|
3
|
+
# Click on the left button to open a different URL in the same window (Only
|
4
|
+
# works online). Click on the right button to open a URL in a new browser window.
|
5
|
+
|
6
|
+
class EmbeddedLinks < Processing::App
|
7
|
+
|
8
|
+
def setup
|
9
|
+
|
10
|
+
size 200, 200
|
11
|
+
|
12
|
+
end
|
13
|
+
|
14
|
+
def draw
|
15
|
+
|
16
|
+
background 204
|
17
|
+
|
18
|
+
no_fill
|
19
|
+
fill 255 if @over_left_button
|
20
|
+
|
21
|
+
rect 20, 60, 75, 75
|
22
|
+
rect 50, 90, 15, 15
|
23
|
+
|
24
|
+
no_fill
|
25
|
+
fill 255 if @over_right_button
|
26
|
+
|
27
|
+
rect 105, 60, 75, 75
|
28
|
+
line 135, 105, 155, 85
|
29
|
+
line 140, 85, 155, 85
|
30
|
+
line 155, 85, 155, 100
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
def mouse_pressed
|
35
|
+
link "http://www.processing.org" if @over_left_button
|
36
|
+
link "http://www.processing.org", "_new" if @over_right_button
|
37
|
+
end
|
38
|
+
|
39
|
+
def mouse_moved
|
40
|
+
check_buttons
|
41
|
+
end
|
42
|
+
|
43
|
+
def mouse_dragged
|
44
|
+
check_buttons
|
45
|
+
end
|
46
|
+
|
47
|
+
def check_buttons
|
48
|
+
@over_left_button = inside? mouse_x, mouse_y, 20, 95, 60, 135
|
49
|
+
@over_right_button = inside? mouse_x, mouse_y, 105, 180, 60, 135
|
50
|
+
end
|
51
|
+
|
52
|
+
def inside? ( x, y, l, r, t, b )
|
53
|
+
return x > l && x < r && y > t && y < b
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
57
|
+
|
58
|
+
EmbeddedLinks.new :title => "Embedded Links"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# Loading Images.
|
2
|
+
#
|
3
|
+
# Loading a recent image from the US National Weather Service.
|
4
|
+
# Notice the date in the upper left corner of the image.
|
5
|
+
# Processing applications can only load images from the network
|
6
|
+
# while running in the Processing environment. This example will
|
7
|
+
# not run in a web broswer and will only work when the computer
|
8
|
+
# is connected to the Internet.
|
9
|
+
|
10
|
+
class LoadingImages < Processing::App
|
11
|
+
|
12
|
+
def setup
|
13
|
+
|
14
|
+
size 200, 200
|
15
|
+
|
16
|
+
background 255
|
17
|
+
|
18
|
+
img1 = load_image "http://s3.amazonaws.com/jashkenas/images/ruby.jpg"
|
19
|
+
|
20
|
+
image img1, 0, 45
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
|
25
|
+
LoadingImages.new :title => "Loading Images"
|
metadata
CHANGED
@@ -1,7 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-processing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 117
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 10
|
10
|
+
- 1
|
11
|
+
version: 1.0.10.1
|
5
12
|
platform: ruby
|
6
13
|
authors:
|
7
14
|
- Jeremy Ashkenas
|
@@ -13,12 +20,12 @@ authors:
|
|
13
20
|
- Florian Jenett
|
14
21
|
- Andreas Haller
|
15
22
|
- Juris Galang
|
23
|
+
- Guillaume Pierronnet
|
16
24
|
autorequire:
|
17
25
|
bindir: bin
|
18
26
|
cert_chain: []
|
19
27
|
|
20
|
-
date:
|
21
|
-
default_executable: rp5
|
28
|
+
date: 2011-09-30 00:00:00 Z
|
22
29
|
dependencies: []
|
23
30
|
|
24
31
|
description: |+
|
@@ -55,45 +62,47 @@ extra_rdoc_files:
|
|
55
62
|
- LICENSE
|
56
63
|
files:
|
57
64
|
- bin/rp5
|
58
|
-
- lib/core/core.jar
|
59
|
-
- lib/core/jruby-complete.jar
|
60
|
-
- lib/patches/JRubyApplet.diff
|
61
|
-
- lib/patches/PApplet.diff
|
62
|
-
- lib/patches/PATCHES.txt
|
63
|
-
- lib/ruby-processing/app.rb
|
64
65
|
- lib/ruby-processing/exporters/applet_exporter.rb
|
65
66
|
- lib/ruby-processing/exporters/application_exporter.rb
|
66
67
|
- lib/ruby-processing/exporters/base_exporter.rb
|
67
68
|
- lib/ruby-processing/exporters/creator.rb
|
68
69
|
- lib/ruby-processing/helpers/numeric.rb
|
69
70
|
- lib/ruby-processing/helpers/string.rb
|
70
|
-
- lib/ruby-processing/runner.rb
|
71
71
|
- lib/ruby-processing/runners/base.rb
|
72
72
|
- lib/ruby-processing/runners/live.rb
|
73
73
|
- lib/ruby-processing/runners/run.rb
|
74
74
|
- lib/ruby-processing/runners/watch.rb
|
75
|
-
- lib/ruby-processing.rb
|
75
|
+
- lib/ruby-processing/helper_methods.rb
|
76
|
+
- lib/ruby-processing/app.rb
|
77
|
+
- lib/ruby-processing/config.rb
|
78
|
+
- lib/ruby-processing/library_loader.rb
|
79
|
+
- lib/ruby-processing/runner.rb
|
76
80
|
- lib/templates/applet/images/built_with.jpg
|
77
|
-
- lib/templates/applet/images/ruby.jpg
|
78
81
|
- lib/templates/applet/images/top.png
|
79
|
-
- lib/templates/applet/
|
82
|
+
- lib/templates/applet/images/ruby.jpg
|
80
83
|
- lib/templates/applet/library/library.txt
|
81
|
-
- lib/templates/
|
84
|
+
- lib/templates/applet/index.html.erb
|
82
85
|
- lib/templates/application/Contents/MacOS/JavaApplicationStub
|
83
|
-
- lib/templates/application/Contents/PkgInfo
|
84
86
|
- lib/templates/application/Contents/Resources/sketch.icns
|
85
|
-
- lib/templates/application/
|
87
|
+
- lib/templates/application/Contents/Info.plist.erb
|
88
|
+
- lib/templates/application/Contents/PkgInfo
|
86
89
|
- lib/templates/application/lib/library/library.txt
|
90
|
+
- lib/templates/application/lib/args.txt.erb
|
87
91
|
- lib/templates/application/lib/MANIFEST.MF
|
88
92
|
- lib/templates/application/run.erb
|
89
93
|
- lib/templates/application/run.exe
|
90
94
|
- lib/templates/create/bare_sketch.rb.erb
|
91
95
|
- lib/templates/create/blank_sketch.rb.erb
|
96
|
+
- lib/ruby-processing.rb
|
97
|
+
- lib/core/jruby-complete.jar
|
98
|
+
- lib/core/core.jar
|
92
99
|
- library/boids/boids.rb
|
93
100
|
- library/control_panel/control_panel.rb
|
94
101
|
- library/dxf/library/dxf.jar
|
102
|
+
- library/dxf/library/export.txt
|
95
103
|
- library/javascript/library/export.txt
|
96
104
|
- library/javascript/library/javascript.jar
|
105
|
+
- library/minim/library/export.txt
|
97
106
|
- library/minim/library/jl1.0.jar
|
98
107
|
- library/minim/library/jsminim.jar
|
99
108
|
- library/minim/library/minim-spi.jar
|
@@ -101,88 +110,123 @@ files:
|
|
101
110
|
- library/minim/library/mp3spi1.9.4.jar
|
102
111
|
- library/minim/library/tritonus_aos.jar
|
103
112
|
- library/minim/library/tritonus_share.jar
|
104
|
-
- library/
|
105
|
-
- library/minim/version.txt
|
113
|
+
- library/net/library/export.txt
|
106
114
|
- library/net/library/net.jar
|
115
|
+
- library/opengl/library/linux32/libgluegen-rt.so
|
116
|
+
- library/opengl/library/linux32/libjogl.so
|
117
|
+
- library/opengl/library/linux32/libjogl_awt.so
|
118
|
+
- library/opengl/library/linux32/libjogl_cg.so
|
119
|
+
- library/opengl/library/linux64/libgluegen-rt.so
|
120
|
+
- library/opengl/library/linux64/libjogl.so
|
121
|
+
- library/opengl/library/linux64/libjogl_awt.so
|
122
|
+
- library/opengl/library/linux64/libjogl_cg.so
|
123
|
+
- library/opengl/library/macosx/libgluegen-rt.jnilib
|
124
|
+
- library/opengl/library/macosx/libjogl.jnilib
|
125
|
+
- library/opengl/library/macosx/libjogl_awt.jnilib
|
126
|
+
- library/opengl/library/macosx/libjogl_cg.jnilib
|
127
|
+
- library/opengl/library/windows32/gluegen-rt.dll
|
128
|
+
- library/opengl/library/windows32/jogl.dll
|
129
|
+
- library/opengl/library/windows32/jogl_awt.dll
|
130
|
+
- library/opengl/library/windows32/jogl_cg.dll
|
131
|
+
- library/opengl/library/windows64/gluegen-rt.dll
|
132
|
+
- library/opengl/library/windows64/jogl.dll
|
133
|
+
- library/opengl/library/windows64/jogl_awt.dll
|
134
|
+
- library/opengl/library/windows64/jogl_cg.dll
|
107
135
|
- library/opengl/library/export.txt
|
108
|
-
- library/opengl/library/gluegen-rt-natives-linux-amd64.jar
|
109
|
-
- library/opengl/library/gluegen-rt-natives-linux-i586.jar
|
110
|
-
- library/opengl/library/gluegen-rt-natives-macosx-ppc.jar
|
111
|
-
- library/opengl/library/gluegen-rt-natives-macosx-universal.jar
|
112
|
-
- library/opengl/library/gluegen-rt-natives-windows-amd64.jar
|
113
|
-
- library/opengl/library/gluegen-rt-natives-windows-i586.jar
|
114
|
-
- library/opengl/library/gluegen-rt.dll
|
115
136
|
- library/opengl/library/gluegen-rt.jar
|
116
|
-
- library/opengl/library/gluegen-rt.jar.pack.gz
|
117
|
-
- library/opengl/library/jogl-natives-linux-amd64.jar
|
118
|
-
- library/opengl/library/jogl-natives-linux-i586.jar
|
119
|
-
- library/opengl/library/jogl-natives-macosx-ppc.jar
|
120
|
-
- library/opengl/library/jogl-natives-macosx-universal.jar
|
121
|
-
- library/opengl/library/jogl-natives-windows-amd64.jar
|
122
|
-
- library/opengl/library/jogl-natives-windows-i586.jar
|
123
|
-
- library/opengl/library/jogl.dll
|
124
137
|
- library/opengl/library/jogl.jar
|
125
|
-
- library/opengl/library/jogl.jar.pack.gz
|
126
|
-
- library/opengl/library/jogl_awt.dll
|
127
|
-
- library/opengl/library/jogl_cg.dll
|
128
|
-
- library/opengl/library/libgluegen-rt.jnilib
|
129
|
-
- library/opengl/library/libgluegen-rt.so
|
130
|
-
- library/opengl/library/libjogl.jnilib
|
131
|
-
- library/opengl/library/libjogl.so
|
132
|
-
- library/opengl/library/libjogl_awt.jnilib
|
133
|
-
- library/opengl/library/libjogl_awt.so
|
134
|
-
- library/opengl/library/libjogl_cg.jnilib
|
135
|
-
- library/opengl/library/libjogl_cg.so
|
136
138
|
- library/opengl/library/opengl.jar
|
139
|
+
- library/pdf/library/export.txt
|
137
140
|
- library/pdf/library/itext.jar
|
138
141
|
- library/pdf/library/pdf.jar
|
139
|
-
- library/
|
140
|
-
- library/serial/library/
|
141
|
-
- library/serial/library/librxtxSerial.jnilib
|
142
|
-
- library/serial/library/
|
142
|
+
- library/serial/library/linux32/librxtxSerial.so
|
143
|
+
- library/serial/library/linux64/librxtxSerial.so
|
144
|
+
- library/serial/library/macosx/librxtxSerial.jnilib
|
145
|
+
- library/serial/library/windows32/rxtxSerial.dll
|
146
|
+
- library/serial/library/windows64/rxtxSerial.dll
|
143
147
|
- library/serial/library/RXTXcomm.jar
|
144
|
-
- library/serial/library/
|
148
|
+
- library/serial/library/export.txt
|
145
149
|
- library/serial/library/serial.jar
|
150
|
+
- library/video/library/export.txt
|
146
151
|
- library/video/library/video.jar
|
147
152
|
- samples/anar/data/java_args.txt
|
153
|
+
- samples/anar/library/anar/anar.jar
|
148
154
|
- samples/anar/extrusion.rb
|
149
155
|
- samples/anar/l_system.rb
|
150
|
-
- samples/anar/library/anar/anar.jar
|
151
156
|
- samples/anar/many_shapes.rb
|
152
|
-
- samples/animator.rb
|
153
|
-
- samples/bezier_playground.rb
|
154
|
-
- samples/circle_collision.rb
|
155
|
-
- samples/
|
156
|
-
- samples/
|
157
|
-
- samples/
|
158
|
-
- samples/full_screen.rb
|
159
|
-
- samples/getting_started.rb
|
160
|
-
- samples/gravity.rb
|
161
|
-
- samples/jwishy.rb
|
162
|
-
- samples/orbit.rb
|
157
|
+
- samples/contributed/animator.rb
|
158
|
+
- samples/contributed/bezier_playground.rb
|
159
|
+
- samples/contributed/circle_collision.rb
|
160
|
+
- samples/contributed/drawolver.rb
|
161
|
+
- samples/contributed/empathy.rb
|
162
|
+
- samples/contributed/fern.rb
|
163
|
+
- samples/contributed/full_screen.rb
|
164
|
+
- samples/contributed/getting_started.rb
|
165
|
+
- samples/contributed/gravity.rb
|
166
|
+
- samples/contributed/jwishy.rb
|
167
|
+
- samples/contributed/orbit.rb
|
168
|
+
- samples/contributed/pong.rb
|
169
|
+
- samples/contributed/flight_patterns.rb
|
170
|
+
- samples/contributed/reflection.rb
|
171
|
+
- samples/contributed/simple_buffer.rb
|
172
|
+
- samples/contributed/tree.rb
|
163
173
|
- samples/peasy_cam/data/java_args.txt
|
164
|
-
- samples/peasy_cam/hello_peasy.rb
|
165
|
-
- samples/peasy_cam/hilbert_fractal.rb
|
166
174
|
- samples/peasy_cam/library/hilbert/hilbert.rb
|
167
175
|
- samples/peasy_cam/library/PeasyCam/PeasyCam.jar
|
168
|
-
- samples/
|
176
|
+
- samples/peasy_cam/hello_peasy.rb
|
177
|
+
- samples/peasy_cam/hilbert_fractal.rb
|
178
|
+
- samples/processing_app/3D/camera/move_eye.rb
|
169
179
|
- samples/processing_app/3D/camera/ortho_vs_perspective.rb
|
170
180
|
- samples/processing_app/3D/camera/perspective.rb
|
171
181
|
- samples/processing_app/3D/form/brick_tower.rb
|
182
|
+
- samples/processing_app/3D/form/cubic_grid.rb
|
183
|
+
- samples/processing_app/3D/form/icosahedra/icosahedra.rb
|
184
|
+
- samples/processing_app/3D/form/icosahedra/icosahedron.rb
|
185
|
+
- samples/processing_app/3D/form/icosahedra/shape_3D.rb
|
186
|
+
- samples/processing_app/3D/form/primitives.rb
|
187
|
+
- samples/processing_app/3D/form/rgb_cube.rb
|
188
|
+
- samples/processing_app/3D/form/shape_transform.rb
|
189
|
+
- samples/processing_app/3D/form/toroid.rb
|
190
|
+
- samples/processing_app/3D/form/vertices.rb
|
191
|
+
- samples/processing_app/3D/image/data/eames.jpg
|
192
|
+
- samples/processing_app/3D/image/data/ystone08.jpg
|
193
|
+
- samples/processing_app/3D/image/explode.rb
|
194
|
+
- samples/processing_app/3D/image/extrusion.rb
|
195
|
+
- samples/processing_app/3D/image/zoom.rb
|
196
|
+
- samples/processing_app/3D/lights/directional.rb
|
197
|
+
- samples/processing_app/3D/lights/lights1.rb
|
198
|
+
- samples/processing_app/3D/lights/lights2.rb
|
199
|
+
- samples/processing_app/3D/lights/reflection.rb
|
200
|
+
- samples/processing_app/3D/lights/spot.rb
|
201
|
+
- samples/processing_app/3D/textures/data/berlin-1.jpg
|
202
|
+
- samples/processing_app/3D/textures/texture1.rb
|
203
|
+
- samples/processing_app/3D/textures/texture3.rb
|
204
|
+
- samples/processing_app/3D/textures/texture_cube.rb
|
205
|
+
- samples/processing_app/3D/textures/texture2.rb
|
206
|
+
- samples/processing_app/3D/transform/birds/bird.rb
|
207
|
+
- samples/processing_app/3D/transform/birds/birds.rb
|
208
|
+
- samples/processing_app/3D/transform/cubes_in_cube/cube.rb
|
209
|
+
- samples/processing_app/3D/transform/cubes_in_cube/cubes_in_cube.rb
|
210
|
+
- samples/processing_app/3D/transform/bird.rb
|
211
|
+
- samples/processing_app/3D/transform/push_pop_cubes.rb
|
212
|
+
- samples/processing_app/3D/transform/rotate1.rb
|
213
|
+
- samples/processing_app/3D/transform/rotate2.rb
|
214
|
+
- samples/processing_app/3D/typography/data/Univers45.vlw
|
172
215
|
- samples/processing_app/3D/typography/data/Univers66.vlw.gz
|
173
216
|
- samples/processing_app/3D/typography/kinetic_type.rb
|
174
|
-
- samples/processing_app/
|
217
|
+
- samples/processing_app/3D/typography/letter_k.rb
|
218
|
+
- samples/processing_app/3D/typography/typing.rb
|
175
219
|
- samples/processing_app/basics/arrays/array.rb
|
176
220
|
- samples/processing_app/basics/arrays/array_2d.rb
|
177
221
|
- samples/processing_app/basics/arrays/array_objects.rb
|
178
|
-
- samples/processing_app/basics/color/
|
222
|
+
- samples/processing_app/basics/color/reading/data/cait.jpg
|
223
|
+
- samples/processing_app/basics/color/reading/reading.rb
|
179
224
|
- samples/processing_app/basics/color/color_wheel.rb
|
180
225
|
- samples/processing_app/basics/color/creating.rb
|
226
|
+
- samples/processing_app/basics/color/brightness.rb
|
181
227
|
- samples/processing_app/basics/color/hue.rb
|
182
228
|
- samples/processing_app/basics/color/linear_gradient.rb
|
183
229
|
- samples/processing_app/basics/color/radial_gradient.rb
|
184
|
-
- samples/processing_app/basics/color/reading/data/cait.jpg
|
185
|
-
- samples/processing_app/basics/color/reading/reading.rb
|
186
230
|
- samples/processing_app/basics/color/relativity.rb
|
187
231
|
- samples/processing_app/basics/color/saturation.rb
|
188
232
|
- samples/processing_app/basics/color/wave_gradient.rb
|
@@ -191,52 +235,100 @@ files:
|
|
191
235
|
- samples/processing_app/basics/control/embedded_iteration.rb
|
192
236
|
- samples/processing_app/basics/control/iteration.rb
|
193
237
|
- samples/processing_app/basics/control/logical_operators.rb
|
194
|
-
- samples/processing_app/basics/data/characters_strings/characters_strings.rb
|
195
238
|
- samples/processing_app/basics/data/characters_strings/data/Eureka-90.vlw
|
196
239
|
- samples/processing_app/basics/data/characters_strings/data/rathausFrog.jpg
|
240
|
+
- samples/processing_app/basics/data/characters_strings/characters_strings.rb
|
197
241
|
- samples/processing_app/basics/data/datatype_conversion.rb
|
198
242
|
- samples/processing_app/basics/data/integers_floats.rb
|
199
243
|
- samples/processing_app/basics/data/true_false.rb
|
200
244
|
- samples/processing_app/basics/data/variable_scope.rb
|
201
245
|
- samples/processing_app/basics/data/variables.rb
|
246
|
+
- samples/processing_app/basics/form/vertices.rb
|
202
247
|
- samples/processing_app/basics/form/bezier.rb
|
203
248
|
- samples/processing_app/basics/form/bezier_ellipse.rb
|
204
249
|
- samples/processing_app/basics/form/pie_chart.rb
|
205
250
|
- samples/processing_app/basics/form/points_lines.rb
|
206
251
|
- samples/processing_app/basics/form/shape_primitives.rb
|
207
252
|
- samples/processing_app/basics/form/triangle_strip.rb
|
208
|
-
- samples/processing_app/basics/form/vertices.rb
|
209
253
|
- samples/processing_app/basics/image/alphamask.rb
|
210
254
|
- samples/processing_app/basics/image/background_image.rb
|
211
|
-
- samples/processing_app/basics/image/
|
255
|
+
- samples/processing_app/basics/image/data/milan_rubbish.jpg
|
256
|
+
- samples/processing_app/basics/image/data/mask.jpg
|
212
257
|
- samples/processing_app/basics/image/data/construct.jpg
|
213
258
|
- samples/processing_app/basics/image/data/eames.jpg
|
214
259
|
- samples/processing_app/basics/image/data/jelly.jpg
|
215
|
-
- samples/processing_app/basics/image/data/mask.jpg
|
216
|
-
- samples/processing_app/basics/image/data/milan_rubbish.jpg
|
217
|
-
- samples/processing_app/basics/image/data/teddy.gif
|
218
|
-
- samples/processing_app/basics/image/data/test.jpg
|
219
260
|
- samples/processing_app/basics/image/data/wash.jpg
|
261
|
+
- samples/processing_app/basics/image/data/test.jpg
|
262
|
+
- samples/processing_app/basics/image/data/teddy.gif
|
220
263
|
- samples/processing_app/basics/image/load_display_image.rb
|
221
|
-
- samples/processing_app/basics/image/pointillism.rb
|
222
264
|
- samples/processing_app/basics/image/request_image.rb
|
223
265
|
- samples/processing_app/basics/image/sprite.rb
|
224
266
|
- samples/processing_app/basics/image/transparency.rb
|
267
|
+
- samples/processing_app/basics/image/create_image.rb
|
268
|
+
- samples/processing_app/basics/image/pointillism.rb
|
225
269
|
- samples/processing_app/basics/input/clock.rb
|
226
270
|
- samples/processing_app/basics/input/constrain.rb
|
227
|
-
- samples/processing_app/basics/input/easing.rb
|
228
|
-
- samples/processing_app/basics/input/keyboard.rb
|
229
271
|
- samples/processing_app/basics/input/keyboard_2.rb
|
230
272
|
- samples/processing_app/basics/input/keyboard_functions.rb
|
231
273
|
- samples/processing_app/basics/input/milliseconds.rb
|
232
|
-
- samples/processing_app/basics/input/mouse_1d.rb
|
233
274
|
- samples/processing_app/basics/input/mouse_2d.rb
|
234
275
|
- samples/processing_app/basics/input/mouse_functions.rb
|
235
276
|
- samples/processing_app/basics/input/mouse_press.rb
|
236
277
|
- samples/processing_app/basics/input/mouse_signals.rb
|
237
278
|
- samples/processing_app/basics/input/storing_input.rb
|
279
|
+
- samples/processing_app/basics/input/easing.rb
|
280
|
+
- samples/processing_app/basics/input/keyboard.rb
|
281
|
+
- samples/processing_app/basics/input/mouse_1d.rb
|
238
282
|
- samples/processing_app/basics/math/additive_wave.rb
|
239
283
|
- samples/processing_app/basics/math/arctangent.rb
|
284
|
+
- samples/processing_app/basics/math/graphing_2_d_equation.rb
|
285
|
+
- samples/processing_app/basics/math/increment_decrement.rb
|
286
|
+
- samples/processing_app/basics/math/modulo.rb
|
287
|
+
- samples/processing_app/basics/math/noise_1_d.rb
|
288
|
+
- samples/processing_app/basics/math/noise_2_d.rb
|
289
|
+
- samples/processing_app/basics/math/noise_3_d.rb
|
290
|
+
- samples/processing_app/basics/math/noise_wave.rb
|
291
|
+
- samples/processing_app/basics/math/operator_precedence.rb
|
292
|
+
- samples/processing_app/basics/math/polar_to_cartesian.rb
|
293
|
+
- samples/processing_app/basics/math/random.rb
|
294
|
+
- samples/processing_app/basics/math/sine.rb
|
295
|
+
- samples/processing_app/basics/math/sine_wave.rb
|
296
|
+
- samples/processing_app/basics/math/distance1.rb
|
297
|
+
- samples/processing_app/basics/math/distance2.rb
|
298
|
+
- samples/processing_app/basics/math/double_random.rb
|
299
|
+
- samples/processing_app/basics/math/sine_cosine.rb
|
300
|
+
- samples/processing_app/basics/objects/inheritance.rb
|
301
|
+
- samples/processing_app/basics/objects/multiple_constructors.rb
|
302
|
+
- samples/processing_app/basics/objects/objects.rb
|
303
|
+
- samples/processing_app/basics/objects/composite_objects.rb
|
304
|
+
- samples/processing_app/basics/shape/data/bot1.svg
|
305
|
+
- samples/processing_app/basics/shape/data/usa-wikipedia.svg
|
306
|
+
- samples/processing_app/basics/shape/disable_style.rb
|
307
|
+
- samples/processing_app/basics/shape/get_child.rb
|
308
|
+
- samples/processing_app/basics/shape/load_display_shape.rb
|
309
|
+
- samples/processing_app/basics/shape/scale_shape.rb
|
310
|
+
- samples/processing_app/basics/structure/functions.rb
|
311
|
+
- samples/processing_app/basics/structure/recursion2.rb
|
312
|
+
- samples/processing_app/basics/structure/redraw.rb
|
313
|
+
- samples/processing_app/basics/structure/setup_draw.rb
|
314
|
+
- samples/processing_app/basics/structure/statements_comments.rb
|
315
|
+
- samples/processing_app/basics/structure/width_height.rb
|
316
|
+
- samples/processing_app/basics/structure/coordinates.rb
|
317
|
+
- samples/processing_app/basics/structure/create_graphics.rb
|
318
|
+
- samples/processing_app/basics/structure/loop.rb
|
319
|
+
- samples/processing_app/basics/structure/noloop.rb
|
320
|
+
- samples/processing_app/basics/structure/recursion1.rb
|
321
|
+
- samples/processing_app/basics/transform/arm.rb
|
322
|
+
- samples/processing_app/basics/transform/rotate.rb
|
323
|
+
- samples/processing_app/basics/transform/scale.rb
|
324
|
+
- samples/processing_app/basics/transform/translate.rb
|
325
|
+
- samples/processing_app/basics/transform/triangle_flower.rb
|
326
|
+
- samples/processing_app/basics/typography/data/CourierNew36.vlw
|
327
|
+
- samples/processing_app/basics/typography/data/Ziggurat-HTF-Black-32.vlw
|
328
|
+
- samples/processing_app/basics/typography/letters.rb
|
329
|
+
- samples/processing_app/basics/typography/words.rb
|
330
|
+
- samples/processing_app/basics/web/embedded_links.rb
|
331
|
+
- samples/processing_app/basics/web/loading_images.rb
|
240
332
|
- samples/processing_app/topics/effects/data/red_smoke.jpg
|
241
333
|
- samples/processing_app/topics/effects/lens.rb
|
242
334
|
- samples/processing_app/topics/simulate/chain.rb
|
@@ -244,13 +336,10 @@ files:
|
|
244
336
|
- samples/processing_app/topics/simulate/simple_particle_system.rb
|
245
337
|
- samples/processing_app/topics/simulate/spring.rb
|
246
338
|
- samples/processing_app/topics/simulate/springs.rb
|
247
|
-
- samples/
|
248
|
-
- samples/simple_buffer.rb
|
249
|
-
- samples/tree.rb
|
339
|
+
- samples/processing_app/ABOUT
|
250
340
|
- README
|
251
341
|
- CHANGELOG
|
252
342
|
- LICENSE
|
253
|
-
has_rdoc: true
|
254
343
|
homepage: http://wiki.github.com/jashkenas/ruby-processing
|
255
344
|
licenses: []
|
256
345
|
|
@@ -265,21 +354,27 @@ rdoc_options:
|
|
265
354
|
require_paths:
|
266
355
|
- lib
|
267
356
|
required_ruby_version: !ruby/object:Gem::Requirement
|
357
|
+
none: false
|
268
358
|
requirements:
|
269
359
|
- - ">="
|
270
360
|
- !ruby/object:Gem::Version
|
361
|
+
hash: 3
|
362
|
+
segments:
|
363
|
+
- 0
|
271
364
|
version: "0"
|
272
|
-
version:
|
273
365
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
366
|
+
none: false
|
274
367
|
requirements:
|
275
368
|
- - ">="
|
276
369
|
- !ruby/object:Gem::Version
|
370
|
+
hash: 3
|
371
|
+
segments:
|
372
|
+
- 0
|
277
373
|
version: "0"
|
278
|
-
version:
|
279
374
|
requirements: []
|
280
375
|
|
281
376
|
rubyforge_project: ruby-processing
|
282
|
-
rubygems_version: 1.
|
377
|
+
rubygems_version: 1.8.10
|
283
378
|
signing_key:
|
284
379
|
specification_version: 3
|
285
380
|
summary: Code as Art, Art as Code. Processing and Ruby are meant for each other.
|