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,281 @@
|
|
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) 2012-15 The Processing Foundation
|
7
|
+
Copyright (c) 2004-12 Ben Fry and Casey Reas
|
8
|
+
Copyright (c) 2001-04 Massachusetts Institute of Technology
|
9
|
+
|
10
|
+
This library is free software; you can redistribute it and/or
|
11
|
+
modify it under the terms of the GNU Lesser General Public
|
12
|
+
License as published by the Free Software Foundation, version 2.1.
|
13
|
+
|
14
|
+
This library is distributed in the hope that it will be useful,
|
15
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
17
|
+
Lesser General Public License for more details.
|
18
|
+
|
19
|
+
You should have received a copy of the GNU Lesser General
|
20
|
+
Public License along with this library; if not, write to the
|
21
|
+
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
22
|
+
Boston, MA 02111-1307 USA
|
23
|
+
*/
|
24
|
+
|
25
|
+
package processing.opengl;
|
26
|
+
|
27
|
+
import processing.core.PGraphics;
|
28
|
+
import processing.core.PShape;
|
29
|
+
import processing.core.PShapeOBJ;
|
30
|
+
|
31
|
+
|
32
|
+
public class PGraphics3D extends PGraphicsOpenGL {
|
33
|
+
|
34
|
+
public PGraphics3D() {
|
35
|
+
super();
|
36
|
+
}
|
37
|
+
|
38
|
+
|
39
|
+
//////////////////////////////////////////////////////////////
|
40
|
+
|
41
|
+
// RENDERER SUPPORT QUERIES
|
42
|
+
|
43
|
+
|
44
|
+
@Override
|
45
|
+
public boolean is2D() {
|
46
|
+
return false;
|
47
|
+
}
|
48
|
+
|
49
|
+
|
50
|
+
@Override
|
51
|
+
public boolean is3D() {
|
52
|
+
return true;
|
53
|
+
}
|
54
|
+
|
55
|
+
|
56
|
+
//////////////////////////////////////////////////////////////
|
57
|
+
|
58
|
+
// PROJECTION
|
59
|
+
|
60
|
+
|
61
|
+
@Override
|
62
|
+
protected void defaultPerspective() {
|
63
|
+
perspective();
|
64
|
+
}
|
65
|
+
|
66
|
+
|
67
|
+
//////////////////////////////////////////////////////////////
|
68
|
+
|
69
|
+
// CAMERA
|
70
|
+
|
71
|
+
|
72
|
+
@Override
|
73
|
+
protected void defaultCamera() {
|
74
|
+
camera();
|
75
|
+
}
|
76
|
+
|
77
|
+
|
78
|
+
//////////////////////////////////////////////////////////////
|
79
|
+
|
80
|
+
// MATRIX MORE!
|
81
|
+
|
82
|
+
|
83
|
+
@Override
|
84
|
+
protected void begin2D() {
|
85
|
+
pushProjection();
|
86
|
+
ortho(-width/2f, width/2f, -height/2f, height/2f);
|
87
|
+
pushMatrix();
|
88
|
+
|
89
|
+
// Set camera for 2D rendering, it simply centers at (width/2, height/2)
|
90
|
+
float centerX = width/2f;
|
91
|
+
float centerY = height/2f;
|
92
|
+
modelview.reset();
|
93
|
+
modelview.translate(-centerX, -centerY);
|
94
|
+
|
95
|
+
modelviewInv.set(modelview);
|
96
|
+
modelviewInv.invert();
|
97
|
+
|
98
|
+
camera.set(modelview);
|
99
|
+
cameraInv.set(modelviewInv);
|
100
|
+
|
101
|
+
updateProjmodelview();
|
102
|
+
}
|
103
|
+
|
104
|
+
|
105
|
+
@Override
|
106
|
+
protected void end2D() {
|
107
|
+
popMatrix();
|
108
|
+
popProjection();
|
109
|
+
}
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
//////////////////////////////////////////////////////////////
|
114
|
+
|
115
|
+
// SHAPE I/O
|
116
|
+
|
117
|
+
|
118
|
+
static protected boolean isSupportedExtension(String extension) {
|
119
|
+
return extension.equals("obj");
|
120
|
+
}
|
121
|
+
|
122
|
+
|
123
|
+
static protected PShape loadShapeImpl(PGraphics pg, String filename,
|
124
|
+
String extension) {
|
125
|
+
PShapeOBJ obj = null;
|
126
|
+
|
127
|
+
if (extension.equals("obj")) {
|
128
|
+
obj = new PShapeOBJ(pg.parent, filename);
|
129
|
+
int prevTextureMode = pg.textureMode;
|
130
|
+
pg.textureMode = NORMAL;
|
131
|
+
PShapeOpenGL p3d = PShapeOpenGL.createShape((PGraphicsOpenGL)pg, obj);
|
132
|
+
pg.textureMode = prevTextureMode;
|
133
|
+
return p3d;
|
134
|
+
}
|
135
|
+
return null;
|
136
|
+
}
|
137
|
+
|
138
|
+
|
139
|
+
|
140
|
+
//////////////////////////////////////////////////////////////
|
141
|
+
|
142
|
+
// SHAPE CREATION
|
143
|
+
|
144
|
+
|
145
|
+
// @Override
|
146
|
+
// protected PShape createShapeFamily(int type) {
|
147
|
+
// PShape shape = new PShapeOpenGL(this, type);
|
148
|
+
// shape.set3D(true);
|
149
|
+
// return shape;
|
150
|
+
// }
|
151
|
+
//
|
152
|
+
//
|
153
|
+
// @Override
|
154
|
+
// protected PShape createShapePrimitive(int kind, float... p) {
|
155
|
+
// PShape shape = new PShapeOpenGL(this, kind, p);
|
156
|
+
// shape.set3D(true);
|
157
|
+
// return shape;
|
158
|
+
// }
|
159
|
+
|
160
|
+
|
161
|
+
/*
|
162
|
+
@Override
|
163
|
+
public PShape createShape(PShape source) {
|
164
|
+
return PShapeOpenGL.createShape3D(this, source);
|
165
|
+
}
|
166
|
+
|
167
|
+
|
168
|
+
@Override
|
169
|
+
public PShape createShape() {
|
170
|
+
return createShape(PShape.GEOMETRY);
|
171
|
+
}
|
172
|
+
|
173
|
+
|
174
|
+
@Override
|
175
|
+
public PShape createShape(int type) {
|
176
|
+
return createShapeImpl(this, type);
|
177
|
+
}
|
178
|
+
|
179
|
+
|
180
|
+
@Override
|
181
|
+
public PShape createShape(int kind, float... p) {
|
182
|
+
return createShapeImpl(this, kind, p);
|
183
|
+
}
|
184
|
+
|
185
|
+
|
186
|
+
static protected PShapeOpenGL createShapeImpl(PGraphicsOpenGL pg, int type) {
|
187
|
+
PShapeOpenGL shape = null;
|
188
|
+
if (type == PConstants.GROUP) {
|
189
|
+
shape = new PShapeOpenGL(pg, PConstants.GROUP);
|
190
|
+
} else if (type == PShape.PATH) {
|
191
|
+
shape = new PShapeOpenGL(pg, PShape.PATH);
|
192
|
+
} else if (type == PShape.GEOMETRY) {
|
193
|
+
shape = new PShapeOpenGL(pg, PShape.GEOMETRY);
|
194
|
+
}
|
195
|
+
shape.set3D(true);
|
196
|
+
return shape;
|
197
|
+
}
|
198
|
+
|
199
|
+
|
200
|
+
static protected PShapeOpenGL createShapeImpl(PGraphicsOpenGL pg,
|
201
|
+
int kind, float... p) {
|
202
|
+
PShapeOpenGL shape = null;
|
203
|
+
int len = p.length;
|
204
|
+
|
205
|
+
if (kind == POINT) {
|
206
|
+
if (len != 2 && len != 3) {
|
207
|
+
showWarning("Wrong number of parameters");
|
208
|
+
return null;
|
209
|
+
}
|
210
|
+
shape = new PShapeOpenGL(pg, PShape.PRIMITIVE);
|
211
|
+
shape.setKind(POINT);
|
212
|
+
} else if (kind == LINE) {
|
213
|
+
if (len != 4 && len != 6) {
|
214
|
+
showWarning("Wrong number of parameters");
|
215
|
+
return null;
|
216
|
+
}
|
217
|
+
shape = new PShapeOpenGL(pg, PShape.PRIMITIVE);
|
218
|
+
shape.setKind(LINE);
|
219
|
+
} else if (kind == TRIANGLE) {
|
220
|
+
if (len != 6) {
|
221
|
+
showWarning("Wrong number of parameters");
|
222
|
+
return null;
|
223
|
+
}
|
224
|
+
shape = new PShapeOpenGL(pg, PShape.PRIMITIVE);
|
225
|
+
shape.setKind(TRIANGLE);
|
226
|
+
} else if (kind == QUAD) {
|
227
|
+
if (len != 8) {
|
228
|
+
showWarning("Wrong number of parameters");
|
229
|
+
return null;
|
230
|
+
}
|
231
|
+
shape = new PShapeOpenGL(pg, PShape.PRIMITIVE);
|
232
|
+
shape.setKind(QUAD);
|
233
|
+
} else if (kind == RECT) {
|
234
|
+
if (len != 4 && len != 5 && len != 8 && len != 9) {
|
235
|
+
showWarning("Wrong number of parameters");
|
236
|
+
return null;
|
237
|
+
}
|
238
|
+
shape = new PShapeOpenGL(pg, PShape.PRIMITIVE);
|
239
|
+
shape.setKind(RECT);
|
240
|
+
} else if (kind == ELLIPSE) {
|
241
|
+
if (len != 4 && len != 5) {
|
242
|
+
showWarning("Wrong number of parameters");
|
243
|
+
return null;
|
244
|
+
}
|
245
|
+
shape = new PShapeOpenGL(pg, PShape.PRIMITIVE);
|
246
|
+
shape.setKind(ELLIPSE);
|
247
|
+
} else if (kind == ARC) {
|
248
|
+
if (len != 6 && len != 7) {
|
249
|
+
showWarning("Wrong number of parameters");
|
250
|
+
return null;
|
251
|
+
}
|
252
|
+
shape = new PShapeOpenGL(pg, PShape.PRIMITIVE);
|
253
|
+
shape.setKind(ARC);
|
254
|
+
|
255
|
+
} else if (kind == BOX) {
|
256
|
+
if (len != 1 && len != 3) {
|
257
|
+
showWarning("Wrong number of parameters");
|
258
|
+
return null;
|
259
|
+
}
|
260
|
+
shape = new PShapeOpenGL(pg, PShape.PRIMITIVE);
|
261
|
+
shape.setKind(BOX);
|
262
|
+
} else if (kind == SPHERE) {
|
263
|
+
if (len < 1 || 3 < len) {
|
264
|
+
showWarning("Wrong number of parameters");
|
265
|
+
return null;
|
266
|
+
}
|
267
|
+
shape = new PShapeOpenGL(pg, PShape.PRIMITIVE);
|
268
|
+
shape.setKind(SPHERE);
|
269
|
+
} else {
|
270
|
+
showWarning("Unrecognized primitive type");
|
271
|
+
}
|
272
|
+
|
273
|
+
if (shape != null) {
|
274
|
+
shape.setParams(p);
|
275
|
+
}
|
276
|
+
|
277
|
+
shape.set3D(true);
|
278
|
+
return shape;
|
279
|
+
}
|
280
|
+
*/
|
281
|
+
}
|