propane 2.7.2-java → 2.8.0.pre-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +10 -0
- data/CHANGELOG.md +1 -1
- data/README.md +10 -8
- data/Rakefile +1 -1
- data/lib/propane/app.rb +3 -3
- data/lib/propane/version.rb +1 -1
- data/lib/{processing-core.jar → propane-2.8.0.jar} +0 -0
- data/library/control_panel/control_panel.rb +3 -2
- data/pom.rb +89 -88
- data/pom.xml +75 -46
- data/propane.gemspec +1 -2
- data/src/main/java/japplemenubar/JAppleMenuBar.java +88 -0
- data/src/main/java/japplemenubar/libjAppleMenuBar.jnilib +0 -0
- data/src/{monkstone → main/java/monkstone}/ColorUtil.java +0 -0
- data/src/{monkstone → main/java/monkstone}/MathToolModule.java +0 -0
- data/src/{monkstone → main/java/monkstone}/PropaneLibrary.java +0 -0
- data/src/{monkstone → main/java/monkstone}/core/LibraryProxy.java +0 -0
- data/src/{monkstone → main/java/monkstone}/fastmath/Deglut.java +0 -0
- data/src/{monkstone → main/java/monkstone}/fastmath/package-info.java +0 -0
- data/src/{monkstone → main/java/monkstone}/filechooser/Chooser.java +0 -0
- data/src/{monkstone → main/java/monkstone}/noise/SimplexNoise.java +0 -0
- data/src/{monkstone → main/java/monkstone}/slider/CustomHorizontalSlider.java +0 -0
- data/src/{monkstone → main/java/monkstone}/slider/CustomVerticalSlider.java +0 -0
- data/src/{monkstone → main/java/monkstone}/slider/SimpleHorizontalSlider.java +0 -0
- data/src/{monkstone → main/java/monkstone}/slider/SimpleSlider.java +0 -0
- data/src/{monkstone → main/java/monkstone}/slider/SimpleVerticalSlider.java +0 -0
- data/src/{monkstone → main/java/monkstone}/slider/Slider.java +0 -0
- data/src/{monkstone → main/java/monkstone}/slider/SliderBar.java +0 -0
- data/src/{monkstone → main/java/monkstone}/slider/SliderGroup.java +0 -0
- data/src/{monkstone → main/java/monkstone}/slider/WheelHandler.java +0 -0
- data/src/{monkstone → main/java/monkstone}/vecmath/AppRender.java +0 -0
- data/src/{monkstone → main/java/monkstone}/vecmath/JRender.java +0 -0
- data/src/{monkstone → main/java/monkstone}/vecmath/ShapeRender.java +0 -0
- data/src/{monkstone → main/java/monkstone}/vecmath/package-info.java +0 -0
- data/src/{monkstone → main/java/monkstone}/vecmath/vec2/Vec2.java +0 -0
- data/src/{monkstone → main/java/monkstone}/vecmath/vec2/package-info.java +0 -0
- data/src/{monkstone → main/java/monkstone}/vecmath/vec3/Vec3.java +0 -0
- data/src/{monkstone → main/java/monkstone}/vecmath/vec3/package-info.java +0 -0
- data/src/{monkstone → main/java/monkstone}/videoevent/VideoInterface.java +0 -0
- data/src/{monkstone → main/java/monkstone}/videoevent/package-info.java +0 -0
- data/src/main/java/processing/awt/PGraphicsJava2D.java +3029 -0
- data/src/main/java/processing/awt/PShapeJava2D.java +377 -0
- data/src/main/java/processing/awt/PSurfaceAWT.java +1567 -0
- data/src/main/java/processing/core/PApplet.java +15709 -0
- data/src/main/java/processing/core/PConstants.java +527 -0
- data/src/main/java/processing/core/PFont.java +1098 -0
- data/src/main/java/processing/core/PGraphics.java +8467 -0
- data/src/main/java/processing/core/PImage.java +3438 -0
- data/src/main/java/processing/core/PMatrix.java +208 -0
- data/src/main/java/processing/core/PMatrix2D.java +534 -0
- data/src/main/java/processing/core/PMatrix3D.java +877 -0
- data/src/main/java/processing/core/PShape.java +3445 -0
- data/src/main/java/processing/core/PShapeOBJ.java +469 -0
- data/src/main/java/processing/core/PShapeSVG.java +1787 -0
- data/src/main/java/processing/core/PStyle.java +63 -0
- data/src/main/java/processing/core/PSurface.java +161 -0
- data/src/main/java/processing/core/PSurfaceNone.java +374 -0
- data/src/main/java/processing/core/PVector.java +1063 -0
- data/src/main/java/processing/data/FloatDict.java +829 -0
- data/src/main/java/processing/data/FloatList.java +912 -0
- data/src/main/java/processing/data/IntDict.java +796 -0
- data/src/main/java/processing/data/IntList.java +913 -0
- data/src/main/java/processing/data/JSONArray.java +1260 -0
- data/src/main/java/processing/data/JSONObject.java +2282 -0
- data/src/main/java/processing/data/JSONTokener.java +435 -0
- data/src/main/java/processing/data/Sort.java +46 -0
- data/src/main/java/processing/data/StringDict.java +601 -0
- data/src/main/java/processing/data/StringList.java +775 -0
- data/src/main/java/processing/data/Table.java +4923 -0
- data/src/main/java/processing/data/TableRow.java +198 -0
- data/src/main/java/processing/data/XML.java +1149 -0
- data/src/main/java/processing/event/Event.java +125 -0
- data/src/main/java/processing/event/KeyEvent.java +70 -0
- data/src/main/java/processing/event/MouseEvent.java +149 -0
- data/src/main/java/processing/event/TouchEvent.java +57 -0
- data/src/main/java/processing/opengl/FontTexture.java +379 -0
- data/src/main/java/processing/opengl/FrameBuffer.java +503 -0
- data/src/main/java/processing/opengl/LinePath.java +623 -0
- data/src/main/java/processing/opengl/LineStroker.java +685 -0
- data/src/main/java/processing/opengl/PGL.java +3366 -0
- data/src/main/java/processing/opengl/PGraphics2D.java +615 -0
- data/src/main/java/processing/opengl/PGraphics3D.java +281 -0
- data/src/main/java/processing/opengl/PGraphicsOpenGL.java +13634 -0
- data/src/main/java/processing/opengl/PJOGL.java +1966 -0
- data/src/main/java/processing/opengl/PShader.java +1478 -0
- data/src/main/java/processing/opengl/PShapeOpenGL.java +5234 -0
- data/src/main/java/processing/opengl/PSurfaceJOGL.java +1315 -0
- data/src/main/java/processing/opengl/Texture.java +1670 -0
- data/src/main/java/processing/opengl/VertexBuffer.java +88 -0
- data/src/main/java/processing/opengl/cursors/arrow.png +0 -0
- data/src/main/java/processing/opengl/cursors/cross.png +0 -0
- data/src/main/java/processing/opengl/cursors/hand.png +0 -0
- data/src/main/java/processing/opengl/cursors/license.txt +27 -0
- data/src/main/java/processing/opengl/cursors/move.png +0 -0
- data/src/main/java/processing/opengl/cursors/text.png +0 -0
- data/src/main/java/processing/opengl/cursors/wait.png +0 -0
- data/src/main/java/processing/opengl/shaders/ColorFrag.glsl +32 -0
- data/src/main/java/processing/opengl/shaders/ColorVert.glsl +34 -0
- data/src/main/java/processing/opengl/shaders/LightFrag.glsl +33 -0
- data/src/main/java/processing/opengl/shaders/LightVert-vc4.glsl +154 -0
- data/src/main/java/processing/opengl/shaders/LightVert.glsl +151 -0
- data/src/main/java/processing/opengl/shaders/LineFrag.glsl +32 -0
- data/src/main/java/processing/opengl/shaders/LineVert.glsl +100 -0
- data/src/main/java/processing/opengl/shaders/MaskFrag.glsl +40 -0
- data/src/main/java/processing/opengl/shaders/PointFrag.glsl +32 -0
- data/src/main/java/processing/opengl/shaders/PointVert.glsl +56 -0
- data/src/main/java/processing/opengl/shaders/TexFrag.glsl +37 -0
- data/src/main/java/processing/opengl/shaders/TexLightFrag.glsl +37 -0
- data/src/main/java/processing/opengl/shaders/TexLightVert-vc4.glsl +160 -0
- data/src/main/java/processing/opengl/shaders/TexLightVert.glsl +157 -0
- data/src/main/java/processing/opengl/shaders/TexVert.glsl +38 -0
- data/src/main/resources/icon/icon-1024.png +0 -0
- data/src/main/resources/icon/icon-128.png +0 -0
- data/src/main/resources/icon/icon-16.png +0 -0
- data/src/main/resources/icon/icon-256.png +0 -0
- data/src/main/resources/icon/icon-32.png +0 -0
- data/src/main/resources/icon/icon-48.png +0 -0
- data/src/main/resources/icon/icon-512.png +0 -0
- data/src/main/resources/icon/icon-64.png +0 -0
- data/src/main/resources/license.txt +508 -0
- data/vendors/Rakefile +5 -20
- metadata +115 -33
- data/lib/propane.jar +0 -0
@@ -0,0 +1,208 @@
|
|
1
|
+
/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
2
|
+
|
3
|
+
/*
|
4
|
+
Part of the Processing project - http://processing.org
|
5
|
+
|
6
|
+
Copyright (c) 2005-08 Ben Fry and Casey Reas
|
7
|
+
|
8
|
+
This library is free software; you can redistribute it and/or
|
9
|
+
modify it under the terms of the GNU Lesser General Public
|
10
|
+
License as published by the Free Software Foundation; either
|
11
|
+
version 2.1 of the License, or (at your option) any later version.
|
12
|
+
|
13
|
+
This library is distributed in the hope that it will be useful,
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
16
|
+
Lesser General Public License for more details.
|
17
|
+
|
18
|
+
You should have received a copy of the GNU Lesser General
|
19
|
+
Public License along with this library; if not, write to the
|
20
|
+
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
21
|
+
Boston, MA 02111-1307 USA
|
22
|
+
*/
|
23
|
+
|
24
|
+
package processing.core;
|
25
|
+
|
26
|
+
|
27
|
+
/**
|
28
|
+
* A matrix is used to define graphical transformations. PMatrix is the common
|
29
|
+
* interface for both the 2D and 3D matrix classes in Processing. A matrix is a
|
30
|
+
* grid of numbers, which can be multiplied by a vector to give another vector.
|
31
|
+
* Multiplying a point by a particular matrix might translate it, rotate it,
|
32
|
+
* or carry out a combination of transformations.
|
33
|
+
*
|
34
|
+
* Multiplying matrices by each other combines their effects; use the
|
35
|
+
* {@code apply} and {@code preApply} methods for this.
|
36
|
+
*/
|
37
|
+
public interface PMatrix {
|
38
|
+
|
39
|
+
/**
|
40
|
+
* Make this an identity matrix. Multiplying by it will have no effect.
|
41
|
+
*/
|
42
|
+
public void reset();
|
43
|
+
|
44
|
+
/**
|
45
|
+
* Returns a copy of this PMatrix.
|
46
|
+
*/
|
47
|
+
public PMatrix get();
|
48
|
+
|
49
|
+
/**
|
50
|
+
* Copies the matrix contents into a float array.
|
51
|
+
* If target is null (or not the correct size), a new array will be created.
|
52
|
+
*/
|
53
|
+
public float[] get(float[] target);
|
54
|
+
|
55
|
+
|
56
|
+
/**
|
57
|
+
* Make this matrix become a copy of src.
|
58
|
+
*/
|
59
|
+
public void set(PMatrix src);
|
60
|
+
|
61
|
+
/**
|
62
|
+
* Set the contents of this matrix to the contents of source. Fills the
|
63
|
+
* matrix left-to-right, starting in the top row.
|
64
|
+
*/
|
65
|
+
public void set(float[] source);
|
66
|
+
|
67
|
+
/**
|
68
|
+
* Set the matrix content to this 2D matrix or its 3D equivalent.
|
69
|
+
*/
|
70
|
+
public void set(float m00, float m01, float m02,
|
71
|
+
float m10, float m11, float m12);
|
72
|
+
|
73
|
+
/**
|
74
|
+
* Set the matrix content to the 3D matrix supplied, if this matrix is 3D.
|
75
|
+
*/
|
76
|
+
public void set(float m00, float m01, float m02, float m03,
|
77
|
+
float m10, float m11, float m12, float m13,
|
78
|
+
float m20, float m21, float m22, float m23,
|
79
|
+
float m30, float m31, float m32, float m33);
|
80
|
+
|
81
|
+
|
82
|
+
public void translate(float tx, float ty);
|
83
|
+
|
84
|
+
public void translate(float tx, float ty, float tz);
|
85
|
+
|
86
|
+
public void rotate(float angle);
|
87
|
+
|
88
|
+
public void rotateX(float angle);
|
89
|
+
|
90
|
+
public void rotateY(float angle);
|
91
|
+
|
92
|
+
public void rotateZ(float angle);
|
93
|
+
|
94
|
+
public void rotate(float angle, float v0, float v1, float v2);
|
95
|
+
|
96
|
+
public void scale(float s);
|
97
|
+
|
98
|
+
public void scale(float sx, float sy);
|
99
|
+
|
100
|
+
public void scale(float x, float y, float z);
|
101
|
+
|
102
|
+
public void shearX(float angle);
|
103
|
+
|
104
|
+
public void shearY(float angle);
|
105
|
+
|
106
|
+
/**
|
107
|
+
* Multiply this matrix by another.
|
108
|
+
*/
|
109
|
+
public void apply(PMatrix source);
|
110
|
+
|
111
|
+
/**
|
112
|
+
* Multiply this matrix by another.
|
113
|
+
*/
|
114
|
+
public void apply(PMatrix2D source);
|
115
|
+
|
116
|
+
/**
|
117
|
+
* Multiply this matrix by another.
|
118
|
+
*/
|
119
|
+
public void apply(PMatrix3D source);
|
120
|
+
|
121
|
+
/**
|
122
|
+
* Multiply this matrix by another.
|
123
|
+
*/
|
124
|
+
public void apply(float n00, float n01, float n02,
|
125
|
+
float n10, float n11, float n12);
|
126
|
+
|
127
|
+
/**
|
128
|
+
* Multiply this matrix by another.
|
129
|
+
*/
|
130
|
+
public void apply(float n00, float n01, float n02, float n03,
|
131
|
+
float n10, float n11, float n12, float n13,
|
132
|
+
float n20, float n21, float n22, float n23,
|
133
|
+
float n30, float n31, float n32, float n33);
|
134
|
+
|
135
|
+
/**
|
136
|
+
* Apply another matrix to the left of this one.
|
137
|
+
*/
|
138
|
+
public void preApply(PMatrix left);
|
139
|
+
|
140
|
+
/**
|
141
|
+
* Apply another matrix to the left of this one.
|
142
|
+
*/
|
143
|
+
public void preApply(PMatrix2D left);
|
144
|
+
|
145
|
+
/**
|
146
|
+
* Apply another matrix to the left of this one. 3D only.
|
147
|
+
*/
|
148
|
+
public void preApply(PMatrix3D left);
|
149
|
+
|
150
|
+
/**
|
151
|
+
* Apply another matrix to the left of this one.
|
152
|
+
*/
|
153
|
+
public void preApply(float n00, float n01, float n02,
|
154
|
+
float n10, float n11, float n12);
|
155
|
+
|
156
|
+
/**
|
157
|
+
* Apply another matrix to the left of this one. 3D only.
|
158
|
+
*/
|
159
|
+
public void preApply(float n00, float n01, float n02, float n03,
|
160
|
+
float n10, float n11, float n12, float n13,
|
161
|
+
float n20, float n21, float n22, float n23,
|
162
|
+
float n30, float n31, float n32, float n33);
|
163
|
+
|
164
|
+
|
165
|
+
/**
|
166
|
+
* Multiply source by this matrix, and return the result.
|
167
|
+
* The result will be stored in target if target is non-null, and target
|
168
|
+
* will then be the matrix returned. This improves performance if you reuse
|
169
|
+
* target, so it's recommended if you call this many times in draw().
|
170
|
+
*/
|
171
|
+
public PVector mult(PVector source, PVector target);
|
172
|
+
|
173
|
+
|
174
|
+
/**
|
175
|
+
* Multiply a multi-element vector against this matrix.
|
176
|
+
* Supplying and recycling a target array improves performance, so it's
|
177
|
+
* recommended if you call this many times in draw().
|
178
|
+
*/
|
179
|
+
public float[] mult(float[] source, float[] target);
|
180
|
+
|
181
|
+
|
182
|
+
// public float multX(float x, float y);
|
183
|
+
// public float multY(float x, float y);
|
184
|
+
|
185
|
+
// public float multX(float x, float y, float z);
|
186
|
+
// public float multY(float x, float y, float z);
|
187
|
+
// public float multZ(float x, float y, float z);
|
188
|
+
|
189
|
+
|
190
|
+
/**
|
191
|
+
* Transpose this matrix; rows become columns and columns rows.
|
192
|
+
*/
|
193
|
+
public void transpose();
|
194
|
+
|
195
|
+
|
196
|
+
/**
|
197
|
+
* Invert this matrix. Will not necessarily succeed, because some matrices
|
198
|
+
* map more than one point to the same image point, and so are irreversible.
|
199
|
+
* @return true if successful
|
200
|
+
*/
|
201
|
+
public boolean invert();
|
202
|
+
|
203
|
+
|
204
|
+
/**
|
205
|
+
* @return the determinant of the matrix
|
206
|
+
*/
|
207
|
+
public float determinant();
|
208
|
+
}
|