opengl 0.8.0-x86-mingw32 → 0.9.0-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (149) hide show
  1. checksums.yaml +7 -0
  2. checksums.yaml.gz.sig +1 -0
  3. data.tar.gz.sig +2 -0
  4. data/.gitignore +2 -1
  5. data/.travis.yml +19 -0
  6. data/History.rdoc +26 -0
  7. data/Manifest.txt +3 -23
  8. data/README.rdoc +43 -37
  9. data/Rakefile +6 -62
  10. data/examples/NeHe/nehe_lesson02.rb +3 -2
  11. data/examples/NeHe/nehe_lesson03.rb +3 -2
  12. data/examples/NeHe/nehe_lesson04.rb +3 -1
  13. data/examples/NeHe/nehe_lesson05.rb +4 -1
  14. data/examples/NeHe/nehe_lesson06.rb +9 -6
  15. data/examples/NeHe/nehe_lesson07.rb +9 -6
  16. data/examples/NeHe/nehe_lesson08.rb +9 -6
  17. data/examples/NeHe/nehe_lesson09.rb +10 -6
  18. data/examples/NeHe/nehe_lesson11.rb +9 -6
  19. data/examples/NeHe/nehe_lesson12.rb +9 -6
  20. data/examples/NeHe/nehe_lesson16.rb +50 -47
  21. data/examples/NeHe/nehe_lesson19.rb +10 -7
  22. data/examples/NeHe/nehe_lesson36.rb +234 -229
  23. data/examples/OrangeBook/brick.rb +227 -225
  24. data/examples/OrangeBook/particle.rb +233 -231
  25. data/examples/RedBook/aapoly.rb +71 -70
  26. data/examples/RedBook/aargb.rb +54 -52
  27. data/examples/RedBook/accanti.rb +96 -94
  28. data/examples/RedBook/accpersp.rb +106 -104
  29. data/examples/RedBook/alpha.rb +54 -52
  30. data/examples/RedBook/alpha3D.rb +90 -88
  31. data/examples/RedBook/bezcurve.rb +48 -46
  32. data/examples/RedBook/bezmesh.rb +71 -69
  33. data/examples/RedBook/checker.rb +57 -55
  34. data/examples/RedBook/clip.rb +41 -39
  35. data/examples/RedBook/colormat.rb +72 -70
  36. data/examples/RedBook/cube.rb +39 -37
  37. data/examples/RedBook/depthcue.rb +37 -35
  38. data/examples/RedBook/dof.rb +110 -109
  39. data/examples/RedBook/double.rb +40 -38
  40. data/examples/RedBook/drawf.rb +30 -28
  41. data/examples/RedBook/feedback.rb +79 -77
  42. data/examples/RedBook/fog.rb +90 -89
  43. data/examples/RedBook/font.rb +78 -76
  44. data/examples/RedBook/hello.rb +29 -27
  45. data/examples/RedBook/image.rb +57 -55
  46. data/examples/RedBook/jitter.rb +131 -131
  47. data/examples/RedBook/light.rb +2 -1
  48. data/examples/RedBook/lines.rb +70 -68
  49. data/examples/RedBook/list.rb +48 -46
  50. data/examples/RedBook/material.rb +200 -199
  51. data/examples/RedBook/mipmap.rb +84 -82
  52. data/examples/RedBook/model.rb +55 -53
  53. data/examples/RedBook/movelight.rb +52 -50
  54. data/examples/RedBook/pickdepth.rb +103 -101
  55. data/examples/RedBook/planet.rb +46 -44
  56. data/examples/RedBook/quadric.rb +97 -95
  57. data/examples/RedBook/robot.rb +55 -53
  58. data/examples/RedBook/select.rb +118 -116
  59. data/examples/RedBook/smooth.rb +35 -33
  60. data/examples/RedBook/stencil.rb +96 -94
  61. data/examples/RedBook/stroke.rb +75 -73
  62. data/examples/RedBook/surface.rb +93 -91
  63. data/examples/RedBook/teaambient.rb +71 -69
  64. data/examples/RedBook/teapots.rb +105 -103
  65. data/examples/RedBook/tess.rb +96 -94
  66. data/examples/RedBook/texbind.rb +79 -77
  67. data/examples/RedBook/texgen.rb +88 -86
  68. data/examples/RedBook/texturesurf.rb +57 -55
  69. data/examples/RedBook/varray.rb +85 -83
  70. data/examples/RedBook/wrap.rb +76 -74
  71. data/examples/misc/OGLBench.rb +114 -113
  72. data/examples/misc/anisotropic.rb +154 -152
  73. data/examples/misc/fbo_test.rb +37 -36
  74. data/examples/misc/font-glut.rb +47 -46
  75. data/examples/misc/glfwtest.rb +16 -16
  76. data/examples/misc/plane.rb +13 -13
  77. data/examples/misc/readpixel.rb +66 -65
  78. data/examples/misc/sdltest.rb +21 -19
  79. data/examples/misc/trislam.rb +548 -547
  80. data/ext/opengl/common.h +16 -38
  81. data/ext/opengl/conv.h +39 -41
  82. data/ext/opengl/extconf.rb +4 -31
  83. data/ext/opengl/funcdef.h +126 -124
  84. data/ext/opengl/gl-1.0-1.1.c +1917 -1917
  85. data/ext/opengl/gl-1.2.c +4 -667
  86. data/ext/opengl/gl-1.3.c +9 -9
  87. data/ext/opengl/gl-1.4.c +8 -8
  88. data/ext/opengl/gl-1.5.c +1 -1
  89. data/ext/opengl/gl-2.0.c +392 -388
  90. data/ext/opengl/gl-3.0.c +493 -0
  91. data/ext/opengl/gl-enums.c +1523 -5
  92. data/ext/opengl/gl-enums.h +4679 -122
  93. data/ext/opengl/gl-error.c +7 -7
  94. data/ext/opengl/gl-error.h +4 -4
  95. data/ext/opengl/gl-ext-arb.c +468 -464
  96. data/ext/opengl/gl-ext-ext.c +18 -18
  97. data/ext/opengl/gl-ext-nv.c +15 -15
  98. data/ext/opengl/gl.c +2 -0
  99. data/ext/opengl/gl_buffer.c +92 -92
  100. data/ext/opengl/opengl.c +1 -7
  101. data/lib/opengl.rb +23 -59
  102. data/lib/opengl/1.9/opengl.so +0 -0
  103. data/lib/opengl/2.0/opengl.so +0 -0
  104. data/lib/opengl/2.1/opengl.so +0 -0
  105. data/lib/opengl/test_case.rb +1 -2
  106. data/test/dummy.xorg.conf +140 -0
  107. data/test/test_gl.rb +18 -22
  108. data/test/test_gl_10_11.rb +220 -220
  109. data/test/test_gl_12.rb +11 -122
  110. data/test/test_gl_13.rb +202 -210
  111. data/test/test_gl_14.rb +16 -19
  112. data/test/test_gl_15.rb +2 -4
  113. data/test/test_gl_20.rb +45 -58
  114. data/test/test_gl_21.rb +46 -163
  115. data/test/test_gl_ext_arb.rb +54 -72
  116. data/test/test_gl_ext_ati.rb +0 -2
  117. data/test/test_gl_ext_ext.rb +66 -66
  118. data/test/test_gl_ext_gremedy.rb +8 -15
  119. data/test/test_gl_ext_nv.rb +109 -112
  120. data/test/test_opengl_buffer.rb +8 -25
  121. data/utils/README +0 -5
  122. data/utils/enumgen.rb +72 -76
  123. data/utils/extlistgen.rb +55 -55
  124. metadata +90 -67
  125. metadata.gz.sig +0 -0
  126. data/Rakefile.cross +0 -107
  127. data/docs/build_install.txt +0 -119
  128. data/docs/extensions.txt.in +0 -348
  129. data/docs/history.txt +0 -66
  130. data/docs/requirements_and_design.txt +0 -117
  131. data/docs/roadmap.txt +0 -28
  132. data/docs/scientific_use.txt +0 -35
  133. data/docs/supplies/page_template.html +0 -71
  134. data/docs/thanks.txt +0 -29
  135. data/docs/tutorial.txt +0 -469
  136. data/ext/opengl/glu-enums.c +0 -164
  137. data/ext/opengl/glu-enums.h +0 -463
  138. data/ext/opengl/glu.c +0 -1534
  139. data/ext/opengl/glut.c +0 -1145
  140. data/ext/opengl/glut_callbacks.c +0 -845
  141. data/lib/glu.rb +0 -1
  142. data/lib/glut.rb +0 -1
  143. data/lib/opengl/opengl.so +0 -0
  144. data/test/test_glu.rb +0 -309
  145. data/utils/mkdn2html.rb +0 -59
  146. data/utils/post-mkdn2html.rb +0 -91
  147. data/website/images/ogl.jpg +0 -0
  148. data/website/images/tab_bottom.gif +0 -0
  149. data/website/style.css +0 -198
@@ -1,13 +1,13 @@
1
1
  #
2
2
  # Copyright (c) 1993-1997, Silicon Graphics, Inc.
3
- # ALL RIGHTS RESERVED
4
- # Permission to use, copy, modify, and distribute this software for
3
+ # ALL RIGHTS RESERVED
4
+ # Permission to use, copy, modify, and distribute this software for
5
5
  # any purpose and without fee is hereby granted, provided that the above
6
6
  # copyright notice appear in all copies and that both the copyright notice
7
- # and this permission notice appear in supporting documentation, and that
7
+ # and this permission notice appear in supporting documentation, and that
8
8
  # the name of Silicon Graphics, Inc. not be used in advertising
9
9
  # or publicity pertaining to distribution of the software without specific,
10
- # written prior permission.
10
+ # written prior permission.
11
11
  #
12
12
  # THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
13
13
  # AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
@@ -22,7 +22,7 @@
22
22
  # ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
23
23
  # POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
24
24
  #
25
- # US Government Users Restricted Rights
25
+ # US Government Users Restricted Rights
26
26
  # Use, duplication, or disclosure by the Government is subject to
27
27
  # restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
28
28
  # (c)(1)(ii) of the Rights in Technical Data and Computer Software
@@ -37,43 +37,45 @@
37
37
  # hello.c
38
38
  # This is a simple, introductory OpenGL program.
39
39
  require 'opengl'
40
+ require 'glu'
41
+ require 'glut'
40
42
  include Gl,Glu,Glut
41
43
 
42
44
  display = Proc.new do
43
- glClear(GL_COLOR_BUFFER_BIT)
44
-
45
- glColor(1.0, 1.0, 1.0)
46
- glBegin(GL_POLYGON)
47
- glVertex(0.25, 0.25, 0.0)
48
- glVertex(0.75, 0.25, 0.0)
49
- glVertex(0.75, 0.75, 0.0)
50
- glVertex(0.25, 0.75, 0.0)
51
- glEnd()
52
-
53
- glutSwapBuffers()
45
+ glClear(GL_COLOR_BUFFER_BIT)
46
+
47
+ glColor(1.0, 1.0, 1.0)
48
+ glBegin(GL_POLYGON)
49
+ glVertex(0.25, 0.25, 0.0)
50
+ glVertex(0.75, 0.25, 0.0)
51
+ glVertex(0.75, 0.75, 0.0)
52
+ glVertex(0.25, 0.75, 0.0)
53
+ glEnd()
54
+
55
+ glutSwapBuffers()
54
56
  end
55
57
 
56
58
  def init
57
- glClearColor(0.0, 0.0, 0.0, 0.0)
58
-
59
- glMatrixMode(GL_PROJECTION)
60
- glLoadIdentity()
61
- glOrtho(0.0, 1.0, 0.0, 1.0, -1.0, 1.0)
59
+ glClearColor(0.0, 0.0, 0.0, 0.0)
60
+
61
+ glMatrixMode(GL_PROJECTION)
62
+ glLoadIdentity()
63
+ glOrtho(0.0, 1.0, 0.0, 1.0, -1.0, 1.0)
62
64
  end
63
65
 
64
66
  keyboard = Proc.new do |key, x, y|
65
- case (key)
66
- when ?\e
67
- exit(0);
68
- end
67
+ case (key)
68
+ when ?\e
69
+ exit(0);
70
+ end
69
71
  end
70
72
 
71
73
  glutInit
72
74
  glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB)
73
- glutInitWindowSize(500, 500)
75
+ glutInitWindowSize(500, 500)
74
76
  glutInitWindowPosition(100, 100)
75
77
  glutCreateWindow("hello")
76
78
  init()
77
- glutDisplayFunc(display)
79
+ glutDisplayFunc(display)
78
80
  glutKeyboardFunc(keyboard)
79
81
  glutMainLoop()
@@ -1,13 +1,13 @@
1
1
  #
2
2
  # Copyright (c) 1993-1997, Silicon Graphics, Inc.
3
- # ALL RIGHTS RESERVED
4
- # Permission to use, copy, modify, and distribute this software for
3
+ # ALL RIGHTS RESERVED
4
+ # Permission to use, copy, modify, and distribute this software for
5
5
  # any purpose and without fee is hereby granted, provided that the above
6
6
  # copyright notice appear in all copies and that both the copyright notice
7
- # and this permission notice appear in supporting documentation, and that
7
+ # and this permission notice appear in supporting documentation, and that
8
8
  # the name of Silicon Graphics, Inc. not be used in advertising
9
9
  # or publicity pertaining to distribution of the software without specific,
10
- # written prior permission.
10
+ # written prior permission.
11
11
  #
12
12
  # THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
13
13
  # AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
@@ -21,8 +21,8 @@
21
21
  # ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
22
22
  # ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
23
23
  # POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
24
- #
25
- # US Government Users Restricted Rights
24
+ #
25
+ # US Government Users Restricted Rights
26
26
  # Use, duplication, or disclosure by the Government is subject to
27
27
  # restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
28
28
  # (c)(1)(ii) of the Rights in Technical Data and Computer Software
@@ -45,6 +45,8 @@
45
45
  # factors are reset. If you press the 'z' or 'Z' keys, you change
46
46
  # the zoom factors.
47
47
  require 'opengl'
48
+ require 'glu'
49
+ require 'glut'
48
50
  require 'mathn'
49
51
  include Gl,Glu,Glut
50
52
 
@@ -57,71 +59,71 @@ $zoomFactor = 1.0
57
59
  $height = 0.0
58
60
 
59
61
  def makeCheckImage
60
- for i in 0..CheckImageWidth-1
61
- for j in 0..CheckImageHeight-1
62
- c = if ((i&0x8==0) != (j&0x8==0)) then 255 else 0 end
63
- $checkImage[(i+CheckImageWidth*j)*3+0] = c
64
- $checkImage[(i+CheckImageWidth*j)*3+1] = c
65
- $checkImage[(i+CheckImageWidth*j)*3+2] = c
66
- end
67
- end
62
+ for i in 0..CheckImageWidth-1
63
+ for j in 0..CheckImageHeight-1
64
+ c = if ((i&0x8==0) != (j&0x8==0)) then 255 else 0 end
65
+ $checkImage[(i+CheckImageWidth*j)*3+0] = c
66
+ $checkImage[(i+CheckImageWidth*j)*3+1] = c
67
+ $checkImage[(i+CheckImageWidth*j)*3+2] = c
68
+ end
69
+ end
68
70
  end
69
71
 
70
72
  def init
71
- glClearColor(0.0, 0.0, 0.0, 0.0)
72
- glShadeModel(GL_FLAT)
73
- makeCheckImage()
74
- glPixelStorei(GL_UNPACK_ALIGNMENT, 1)
73
+ glClearColor(0.0, 0.0, 0.0, 0.0)
74
+ glShadeModel(GL_FLAT)
75
+ makeCheckImage()
76
+ glPixelStorei(GL_UNPACK_ALIGNMENT, 1)
75
77
  end
76
78
 
77
79
  display = Proc.new do
78
- glClear(GL_COLOR_BUFFER_BIT)
79
- glRasterPos(0, 0)
80
- glDrawPixels(CheckImageWidth, CheckImageHeight, GL_RGB, GL_UNSIGNED_BYTE, $checkImage.pack("C*"))
81
- glFlush()
80
+ glClear(GL_COLOR_BUFFER_BIT)
81
+ glRasterPos(0, 0)
82
+ glDrawPixels(CheckImageWidth, CheckImageHeight, GL_RGB, GL_UNSIGNED_BYTE, $checkImage.pack("C*"))
83
+ glFlush()
82
84
  end
83
85
 
84
86
  reshape = Proc.new do |w, h|
85
- glViewport(0, 0, w, h)
86
- $height = h
87
- glMatrixMode(GL_PROJECTION)
88
- glLoadIdentity()
89
- gluOrtho2D(0.0, w, 0.0, h)
90
- glMatrixMode(GL_MODELVIEW)
91
- glLoadIdentity()
87
+ glViewport(0, 0, w, h)
88
+ $height = h
89
+ glMatrixMode(GL_PROJECTION)
90
+ glLoadIdentity()
91
+ gluOrtho2D(0.0, w, 0.0, h)
92
+ glMatrixMode(GL_MODELVIEW)
93
+ glLoadIdentity()
92
94
  end
93
95
 
94
96
  $screeny = 0.0
95
97
  motion = Proc.new do |x, y|
96
- $screeny = $height - y
97
- glRasterPos(x, $screeny)
98
- glPixelZoom($zoomFactor, $zoomFactor)
99
- glCopyPixels(0, 0, CheckImageWidth, CheckImageHeight, GL_COLOR)
100
- glPixelZoom(1.0, 1.0)
101
- glFlush()
98
+ $screeny = $height - y
99
+ glRasterPos(x, $screeny)
100
+ glPixelZoom($zoomFactor, $zoomFactor)
101
+ glCopyPixels(0, 0, CheckImageWidth, CheckImageHeight, GL_COLOR)
102
+ glPixelZoom(1.0, 1.0)
103
+ glFlush()
102
104
  end
103
105
 
104
106
  keyboard = Proc.new do |key, x, y|
105
- case (key)
106
- when ?r,?R
107
- $zoomFactor = 1.0
108
- glutPostRedisplay()
109
- printf("zoomFactor reset to 1.0\n")
110
- when ?z
111
- $zoomFactor = $zoomFactor + 0.5
112
- if ($zoomFactor >= 3.0)
113
- $zoomFactor = 3.0
114
- end
115
- printf("zoomFactor is now %4.1f\n", $zoomFactor)
116
- when ?Z
117
- $zoomFactor = $zoomFactor - 0.5
118
- if ($zoomFactor <= 0.5)
119
- $zoomFactor = 0.5
120
- end
121
- printf("zoomFactor is now %4.1f\n", $zoomFactor)
122
- when ?\e
123
- exit(0)
124
- end
107
+ case (key)
108
+ when ?r,?R
109
+ $zoomFactor = 1.0
110
+ glutPostRedisplay()
111
+ printf("zoomFactor reset to 1.0\n")
112
+ when ?z
113
+ $zoomFactor = $zoomFactor + 0.5
114
+ if ($zoomFactor >= 3.0)
115
+ $zoomFactor = 3.0
116
+ end
117
+ printf("zoomFactor is now %4.1f\n", $zoomFactor)
118
+ when ?Z
119
+ $zoomFactor = $zoomFactor - 0.5
120
+ if ($zoomFactor <= 0.5)
121
+ $zoomFactor = 0.5
122
+ end
123
+ printf("zoomFactor is now %4.1f\n", $zoomFactor)
124
+ when ?\e
125
+ exit(0)
126
+ end
125
127
  end
126
128
 
127
129
  glutInit
@@ -1,13 +1,13 @@
1
1
  #
2
2
  # (c) Copyright 1993, Silicon Graphics, Inc.
3
- # ALL RIGHTS RESERVED
4
- # Permission to use, copy, modify, and distribute this software for
3
+ # ALL RIGHTS RESERVED
4
+ # Permission to use, copy, modify, and distribute this software for
5
5
  # any purpose and without fee is hereby granted, provided that the above
6
6
  # copyright notice appear in all copies and that both the copyright notice
7
- # and this permission notice appear in supporting documentation, and that
7
+ # and this permission notice appear in supporting documentation, and that
8
8
  # the name of Silicon Graphics, Inc. not be used in advertising
9
9
  # or publicity pertaining to distribution of the software without specific,
10
- # written prior permission.
10
+ # written prior permission.
11
11
  #
12
12
  # THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
13
13
  # AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
@@ -21,8 +21,8 @@
21
21
  # ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
22
22
  # ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
23
23
  # POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
24
- #
25
- # US Government Users Restricted Rights
24
+ #
25
+ # US Government Users Restricted Rights
26
26
  # Use, duplication, or disclosure by the Government is subject to
27
27
  # restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
28
28
  # (c)(1)(ii) of the Rights in Technical Data and Computer Software
@@ -45,7 +45,7 @@
45
45
  # have a gaussian distribution around the origin.
46
46
  #
47
47
  # Use these to do model jittering for scene anti-aliasing and view volume
48
- # jittering for depth of field effects. Use in conjunction with the
48
+ # jittering for depth of field effects. Use in conjunction with the
49
49
  # accwindow() routine.
50
50
  #
51
51
 
@@ -53,155 +53,155 @@ MAX_SAMPLES=66
53
53
 
54
54
  # 2 jitter points
55
55
  $j2 = [
56
- [ 0.246490, 0.249999],
57
- [-0.246490, -0.249999]
56
+ [ 0.246490, 0.249999],
57
+ [-0.246490, -0.249999]
58
58
  ]
59
59
 
60
60
 
61
61
  # 3 jitter points
62
62
  $j3 = [
63
- [-0.373411, -0.250550],
64
- [ 0.256263, 0.368119],
65
- [ 0.117148, -0.117570]
63
+ [-0.373411, -0.250550],
64
+ [ 0.256263, 0.368119],
65
+ [ 0.117148, -0.117570]
66
66
  ]
67
67
 
68
68
 
69
69
  # 4 jitter points
70
70
  $j4 = [
71
- [-0.208147, 0.353730],
72
- [ 0.203849, -0.353780],
73
- [-0.292626, -0.149945],
74
- [ 0.296924, 0.149994]
71
+ [-0.208147, 0.353730],
72
+ [ 0.203849, -0.353780],
73
+ [-0.292626, -0.149945],
74
+ [ 0.296924, 0.149994]
75
75
  ]
76
76
 
77
77
 
78
78
  # 8 jitter points
79
79
  $j8 = [
80
- [-0.334818, 0.435331],
81
- [ 0.286438, -0.393495],
82
- [ 0.459462, 0.141540],
83
- [-0.414498, -0.192829],
84
- [-0.183790, 0.082102],
85
- [-0.079263, -0.317383],
86
- [ 0.102254, 0.299133],
87
- [ 0.164216, -0.054399]
80
+ [-0.334818, 0.435331],
81
+ [ 0.286438, -0.393495],
82
+ [ 0.459462, 0.141540],
83
+ [-0.414498, -0.192829],
84
+ [-0.183790, 0.082102],
85
+ [-0.079263, -0.317383],
86
+ [ 0.102254, 0.299133],
87
+ [ 0.164216, -0.054399]
88
88
  ]
89
89
 
90
90
 
91
- # 15 jitter points
91
+ # 15 jitter points
92
92
  $j15 = [
93
- [ 0.285561, 0.188437],
94
- [ 0.360176, -0.065688],
95
- [-0.111751, 0.275019],
96
- [-0.055918, -0.215197],
97
- [-0.080231, -0.470965],
98
- [ 0.138721, 0.409168],
99
- [ 0.384120, 0.458500],
100
- [-0.454968, 0.134088],
101
- [ 0.179271, -0.331196],
102
- [-0.307049, -0.364927],
103
- [ 0.105354, -0.010099],
104
- [-0.154180, 0.021794],
105
- [-0.370135, -0.116425],
106
- [ 0.451636, -0.300013],
107
- [-0.370610, 0.387504]
93
+ [ 0.285561, 0.188437],
94
+ [ 0.360176, -0.065688],
95
+ [-0.111751, 0.275019],
96
+ [-0.055918, -0.215197],
97
+ [-0.080231, -0.470965],
98
+ [ 0.138721, 0.409168],
99
+ [ 0.384120, 0.458500],
100
+ [-0.454968, 0.134088],
101
+ [ 0.179271, -0.331196],
102
+ [-0.307049, -0.364927],
103
+ [ 0.105354, -0.010099],
104
+ [-0.154180, 0.021794],
105
+ [-0.370135, -0.116425],
106
+ [ 0.451636, -0.300013],
107
+ [-0.370610, 0.387504]
108
108
  ]
109
109
 
110
- # 24 jitter points
110
+ # 24 jitter points
111
111
  $j24 = [
112
- [ 0.030245, 0.136384],
113
- [ 0.018865, -0.348867],
114
- [-0.350114, -0.472309],
115
- [ 0.222181, 0.149524],
116
- [-0.393670, -0.266873],
117
- [ 0.404568, 0.230436],
118
- [ 0.098381, 0.465337],
119
- [ 0.462671, 0.442116],
120
- [ 0.400373, -0.212720],
121
- [-0.409988, 0.263345],
122
- [-0.115878, -0.001981],
123
- [ 0.348425, -0.009237],
124
- [-0.464016, 0.066467],
125
- [-0.138674, -0.468006],
126
- [ 0.144932, -0.022780],
127
- [-0.250195, 0.150161],
128
- [-0.181400, -0.264219],
129
- [ 0.196097, -0.234139],
130
- [-0.311082, -0.078815],
131
- [ 0.268379, 0.366778],
132
- [-0.040601, 0.327109],
133
- [-0.234392, 0.354659],
134
- [-0.003102, -0.154402],
135
- [ 0.297997, -0.417965]
112
+ [ 0.030245, 0.136384],
113
+ [ 0.018865, -0.348867],
114
+ [-0.350114, -0.472309],
115
+ [ 0.222181, 0.149524],
116
+ [-0.393670, -0.266873],
117
+ [ 0.404568, 0.230436],
118
+ [ 0.098381, 0.465337],
119
+ [ 0.462671, 0.442116],
120
+ [ 0.400373, -0.212720],
121
+ [-0.409988, 0.263345],
122
+ [-0.115878, -0.001981],
123
+ [ 0.348425, -0.009237],
124
+ [-0.464016, 0.066467],
125
+ [-0.138674, -0.468006],
126
+ [ 0.144932, -0.022780],
127
+ [-0.250195, 0.150161],
128
+ [-0.181400, -0.264219],
129
+ [ 0.196097, -0.234139],
130
+ [-0.311082, -0.078815],
131
+ [ 0.268379, 0.366778],
132
+ [-0.040601, 0.327109],
133
+ [-0.234392, 0.354659],
134
+ [-0.003102, -0.154402],
135
+ [ 0.297997, -0.417965]
136
136
  ]
137
137
 
138
138
 
139
139
  # 66 jitter points
140
140
  $j66 = [
141
- [ 0.266377, -0.218171],
142
- [-0.170919, -0.429368],
143
- [ 0.047356, -0.387135],
144
- [-0.430063, 0.363413],
145
- [-0.221638, -0.313768],
146
- [ 0.124758, -0.197109],
147
- [-0.400021, 0.482195],
148
- [ 0.247882, 0.152010],
149
- [-0.286709, -0.470214],
150
- [-0.426790, 0.004977],
151
- [-0.361249, -0.104549],
152
- [-0.040643, 0.123453],
153
- [-0.189296, 0.438963],
154
- [-0.453521, -0.299889],
155
- [ 0.408216, -0.457699],
156
- [ 0.328973, -0.101914],
157
- [-0.055540, -0.477952],
158
- [ 0.194421, 0.453510],
159
- [ 0.404051, 0.224974],
160
- [ 0.310136, 0.419700],
161
- [-0.021743, 0.403898],
162
- [-0.466210, 0.248839],
163
- [ 0.341369, 0.081490],
164
- [ 0.124156, -0.016859],
165
- [-0.461321, -0.176661],
166
- [ 0.013210, 0.234401],
167
- [ 0.174258, -0.311854],
168
- [ 0.294061, 0.263364],
169
- [-0.114836, 0.328189],
170
- [ 0.041206, -0.106205],
171
- [ 0.079227, 0.345021],
172
- [-0.109319, -0.242380],
173
- [ 0.425005, -0.332397],
174
- [ 0.009146, 0.015098],
175
- [-0.339084, -0.355707],
176
- [-0.224596, -0.189548],
177
- [ 0.083475, 0.117028],
178
- [ 0.295962, -0.334699],
179
- [ 0.452998, 0.025397],
180
- [ 0.206511, -0.104668],
181
- [ 0.447544, -0.096004],
182
- [-0.108006, -0.002471],
183
- [-0.380810, 0.130036],
184
- [-0.242440, 0.186934],
185
- [-0.200363, 0.070863],
186
- [-0.344844, -0.230814],
187
- [ 0.408660, 0.345826],
188
- [-0.233016, 0.305203],
189
- [ 0.158475, -0.430762],
190
- [ 0.486972, 0.139163],
191
- [-0.301610, 0.009319],
192
- [ 0.282245, -0.458671],
193
- [ 0.482046, 0.443890],
194
- [-0.121527, 0.210223],
195
- [-0.477606, -0.424878],
196
- [-0.083941, -0.121440],
197
- [-0.345773, 0.253779],
198
- [ 0.234646, 0.034549],
199
- [ 0.394102, -0.210901],
200
- [-0.312571, 0.397656],
201
- [ 0.200906, 0.333293],
202
- [ 0.018703, -0.261792],
203
- [-0.209349, -0.065383],
204
- [ 0.076248, 0.478538],
205
- [-0.073036, -0.355064],
206
- [ 0.145087, 0.221726]
141
+ [ 0.266377, -0.218171],
142
+ [-0.170919, -0.429368],
143
+ [ 0.047356, -0.387135],
144
+ [-0.430063, 0.363413],
145
+ [-0.221638, -0.313768],
146
+ [ 0.124758, -0.197109],
147
+ [-0.400021, 0.482195],
148
+ [ 0.247882, 0.152010],
149
+ [-0.286709, -0.470214],
150
+ [-0.426790, 0.004977],
151
+ [-0.361249, -0.104549],
152
+ [-0.040643, 0.123453],
153
+ [-0.189296, 0.438963],
154
+ [-0.453521, -0.299889],
155
+ [ 0.408216, -0.457699],
156
+ [ 0.328973, -0.101914],
157
+ [-0.055540, -0.477952],
158
+ [ 0.194421, 0.453510],
159
+ [ 0.404051, 0.224974],
160
+ [ 0.310136, 0.419700],
161
+ [-0.021743, 0.403898],
162
+ [-0.466210, 0.248839],
163
+ [ 0.341369, 0.081490],
164
+ [ 0.124156, -0.016859],
165
+ [-0.461321, -0.176661],
166
+ [ 0.013210, 0.234401],
167
+ [ 0.174258, -0.311854],
168
+ [ 0.294061, 0.263364],
169
+ [-0.114836, 0.328189],
170
+ [ 0.041206, -0.106205],
171
+ [ 0.079227, 0.345021],
172
+ [-0.109319, -0.242380],
173
+ [ 0.425005, -0.332397],
174
+ [ 0.009146, 0.015098],
175
+ [-0.339084, -0.355707],
176
+ [-0.224596, -0.189548],
177
+ [ 0.083475, 0.117028],
178
+ [ 0.295962, -0.334699],
179
+ [ 0.452998, 0.025397],
180
+ [ 0.206511, -0.104668],
181
+ [ 0.447544, -0.096004],
182
+ [-0.108006, -0.002471],
183
+ [-0.380810, 0.130036],
184
+ [-0.242440, 0.186934],
185
+ [-0.200363, 0.070863],
186
+ [-0.344844, -0.230814],
187
+ [ 0.408660, 0.345826],
188
+ [-0.233016, 0.305203],
189
+ [ 0.158475, -0.430762],
190
+ [ 0.486972, 0.139163],
191
+ [-0.301610, 0.009319],
192
+ [ 0.282245, -0.458671],
193
+ [ 0.482046, 0.443890],
194
+ [-0.121527, 0.210223],
195
+ [-0.477606, -0.424878],
196
+ [-0.083941, -0.121440],
197
+ [-0.345773, 0.253779],
198
+ [ 0.234646, 0.034549],
199
+ [ 0.394102, -0.210901],
200
+ [-0.312571, 0.397656],
201
+ [ 0.200906, 0.333293],
202
+ [ 0.018703, -0.261792],
203
+ [-0.209349, -0.065383],
204
+ [ 0.076248, 0.478538],
205
+ [-0.073036, -0.355064],
206
+ [ 0.145087, 0.221726]
207
207
  ]