picrate 2.4.1-java → 2.5.2-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/.mvn/wrapper/maven-wrapper.properties +1 -1
  3. data/CHANGELOG.md +9 -1
  4. data/Gemfile +1 -1
  5. data/README.md +2 -2
  6. data/Rakefile +1 -1
  7. data/docs/.gitignore +1 -0
  8. data/docs/_classes/{app_render → gfx_render}/app_render.md +5 -5
  9. data/docs/_classes/vec2d/vec2d.md +2 -2
  10. data/docs/_methods/{noise_mode.md → noise_modes.md} +9 -21
  11. data/docs/_posts/2018-05-06-install_jruby.md +5 -5
  12. data/docs/_posts/2019-11-11-getting_started_buster.md +2 -2
  13. data/docs/_posts/2020-05-11-getting_started_manjaro.md +13 -4
  14. data/docs/about.md +1 -1
  15. data/lib/picrate/app.rb +2 -8
  16. data/lib/picrate/helper_methods.rb +6 -6
  17. data/lib/picrate/version.rb +1 -1
  18. data/lib/picrate-2.5.2.jar +0 -0
  19. data/picrate.gemspec +1 -1
  20. data/pom.rb +4 -4
  21. data/pom.xml +6 -9
  22. data/src/main/java/monkstone/vecmath/GfxRender.java +10 -11
  23. data/src/main/java/monkstone/vecmath/JRender.java +7 -7
  24. data/src/main/java/monkstone/vecmath/ShapeRender.java +3 -4
  25. data/src/main/java/monkstone/vecmath/vec2/Vec2.java +40 -43
  26. data/src/main/java/monkstone/vecmath/vec3/Vec3.java +30 -45
  27. data/src/main/java/processing/awt/PImageAWT.java +1 -1
  28. data/src/main/java/processing/awt/ShimAWT.java +1 -1
  29. data/src/main/java/processing/core/PApplet.java +1 -1
  30. data/src/main/java/processing/core/PImage.java +14 -14
  31. data/src/main/java/processing/opengl/PGraphicsOpenGL.java +13 -13
  32. data/src/main/java/processing/opengl/PShader.java +0 -6
  33. data/src/main/java/processing/opengl/PSurfaceJOGL.java +4 -4
  34. data/src/main/{java/processing/opengl → resources}/cursors/arrow.png +0 -0
  35. data/src/main/{java/processing/opengl → resources}/cursors/cross.png +0 -0
  36. data/src/main/{java/processing/opengl → resources}/cursors/hand.png +0 -0
  37. data/src/main/{java/processing/opengl → resources}/cursors/license.txt +0 -0
  38. data/src/main/{java/processing/opengl → resources}/cursors/move.png +0 -0
  39. data/src/main/{java/processing/opengl → resources}/cursors/text.png +0 -0
  40. data/src/main/{java/processing/opengl → resources}/cursors/wait.png +0 -0
  41. data/src/main/{java/processing/opengl → resources}/shaders/ColorFrag.glsl +0 -0
  42. data/src/main/{java/processing/opengl → resources}/shaders/ColorVert.glsl +0 -0
  43. data/src/main/{java/processing/opengl → resources}/shaders/LightFrag.glsl +0 -0
  44. data/src/main/{java/processing/opengl → resources}/shaders/LightVert.glsl +0 -0
  45. data/src/main/{java/processing/opengl → resources}/shaders/LineFrag.glsl +0 -0
  46. data/src/main/{java/processing/opengl → resources}/shaders/LineVert.glsl +0 -0
  47. data/src/main/{java/processing/opengl → resources}/shaders/MaskFrag.glsl +0 -0
  48. data/src/main/{java/processing/opengl → resources}/shaders/PointFrag.glsl +0 -0
  49. data/src/main/{java/processing/opengl → resources}/shaders/PointVert.glsl +0 -0
  50. data/src/main/{java/processing/opengl → resources}/shaders/TexFrag.glsl +0 -0
  51. data/src/main/{java/processing/opengl → resources}/shaders/TexLightFrag.glsl +0 -0
  52. data/src/main/{java/processing/opengl → resources}/shaders/TexLightVert.glsl +0 -0
  53. data/src/main/{java/processing/opengl → resources}/shaders/TexVert.glsl +0 -0
  54. data/test/noise_test.rb +17 -0
  55. data/test/test_helper.rb +1 -1
  56. data/test/vecmath_spec_test.rb +3 -3
  57. data/vendors/Rakefile +1 -1
  58. metadata +30 -41
  59. data/lib/picrate-2.4.1.jar +0 -0
  60. data/src/main/java/japplemenubar/JAppleMenuBar.java +0 -96
  61. data/src/main/java/japplemenubar/libjAppleMenuBar.jnilib +0 -0
  62. data/src/main/java/monkstone/complex/JComplex.java +0 -252
  63. data/src/main/java/monkstone/vecmath/AppRender.java +0 -88
  64. data/src/main/java/monkstone/vecmath/package-info.java +0 -20
  65. data/src/main/java/monkstone/vecmath/vec2/package-info.java +0 -6
  66. data/src/main/java/monkstone/vecmath/vec3/package-info.java +0 -6
@@ -1,88 +0,0 @@
1
- package monkstone.vecmath;
2
-
3
- import processing.core.PApplet;
4
- import processing.core.PGraphics;
5
-
6
- /**
7
- *
8
- *
9
- * @author Martin Prout
10
- */
11
- public class AppRender implements JRender {
12
-
13
- final PGraphics g;
14
-
15
- /**
16
- *
17
- * @param app PApplet
18
- */
19
- public AppRender(final PApplet app) {
20
- this.g = app.g;
21
- }
22
-
23
- /**
24
- *
25
- * @param x double
26
- * @param y double
27
- */
28
- @Override
29
- public void vertex(double x, double y) {
30
- g.vertex((float) x, (float) y);
31
- }
32
-
33
- /**
34
- *
35
- * @param x double
36
- * @param y double
37
- */
38
- @Override
39
- public void curveVertex(double x, double y) {
40
- g.curveVertex((float) x, (float) y);
41
- }
42
-
43
- /**
44
- *
45
- * @param x double
46
- * @param y double
47
- * @param z double
48
- */
49
- @Override
50
- public void vertex(double x, double y, double z) {
51
- g.vertex((float) x, (float) y, (float) z);
52
- }
53
-
54
- /**
55
- *
56
- * @param x double
57
- * @param y double
58
- * @param z double
59
- */
60
- @Override
61
- public void normal(double x, double y, double z) {
62
- g.normal((float) x, (float) y, (float) z);
63
- }
64
-
65
- /**
66
- *
67
- * @param x double
68
- * @param y double
69
- * @param z double
70
- * @param u double
71
- * @param v double
72
- */
73
- @Override
74
- public void vertex(double x, double y, double z, double u, double v) {
75
- g.vertex((float) x, (float) y, (float) z, (float) u, (float) v);
76
- }
77
-
78
- /**
79
- *
80
- * @param x double
81
- * @param y double
82
- * @param z double
83
- */
84
- @Override
85
- public void curveVertex(double x, double y, double z) {
86
- g.curveVertex((float) x, (float) y, (float) z);
87
- }
88
- }
@@ -1,20 +0,0 @@
1
- /*
2
- * Copyright (c) 2018-21 Martin Prout
3
- *
4
- * This library is free software; you can redistribute it and/or
5
- * modify it under the terms of the GNU General Public
6
- * License as published by the Free Software Foundation; either
7
- * version 3.0 of the License, or (at your option) any later version.
8
- *
9
- * http://creativecommons.org/licenses/LGPL/2.1/
10
- *
11
- * This library is distributed in the hope that it will be useful,
12
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- * Lesser General Public License for more details.
15
- *
16
- * You should have received a copy of the GNU General Public
17
- * License along with this library; if not, write to the Free Software
18
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19
- */
20
- package monkstone.vecmath;
@@ -1,6 +0,0 @@
1
- /*
2
- * To change this license header, choose License Headers in Project Properties.
3
- * To change this template file, choose Tools | Templates
4
- * and open the template in the editor.
5
- */
6
- package monkstone.vecmath.vec2;
@@ -1,6 +0,0 @@
1
- /*
2
- * To change this license header, choose License Headers in Project Properties.
3
- * To change this template file, choose Tools | Templates
4
- * and open the template in the editor.
5
- */
6
- package monkstone.vecmath.vec3;