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.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +1 -0
- data.tar.gz.sig +2 -0
- data/.gitignore +2 -1
- data/.travis.yml +19 -0
- data/History.rdoc +26 -0
- data/Manifest.txt +3 -23
- data/README.rdoc +43 -37
- data/Rakefile +6 -62
- data/examples/NeHe/nehe_lesson02.rb +3 -2
- data/examples/NeHe/nehe_lesson03.rb +3 -2
- data/examples/NeHe/nehe_lesson04.rb +3 -1
- data/examples/NeHe/nehe_lesson05.rb +4 -1
- data/examples/NeHe/nehe_lesson06.rb +9 -6
- data/examples/NeHe/nehe_lesson07.rb +9 -6
- data/examples/NeHe/nehe_lesson08.rb +9 -6
- data/examples/NeHe/nehe_lesson09.rb +10 -6
- data/examples/NeHe/nehe_lesson11.rb +9 -6
- data/examples/NeHe/nehe_lesson12.rb +9 -6
- data/examples/NeHe/nehe_lesson16.rb +50 -47
- data/examples/NeHe/nehe_lesson19.rb +10 -7
- data/examples/NeHe/nehe_lesson36.rb +234 -229
- data/examples/OrangeBook/brick.rb +227 -225
- data/examples/OrangeBook/particle.rb +233 -231
- data/examples/RedBook/aapoly.rb +71 -70
- data/examples/RedBook/aargb.rb +54 -52
- data/examples/RedBook/accanti.rb +96 -94
- data/examples/RedBook/accpersp.rb +106 -104
- data/examples/RedBook/alpha.rb +54 -52
- data/examples/RedBook/alpha3D.rb +90 -88
- data/examples/RedBook/bezcurve.rb +48 -46
- data/examples/RedBook/bezmesh.rb +71 -69
- data/examples/RedBook/checker.rb +57 -55
- data/examples/RedBook/clip.rb +41 -39
- data/examples/RedBook/colormat.rb +72 -70
- data/examples/RedBook/cube.rb +39 -37
- data/examples/RedBook/depthcue.rb +37 -35
- data/examples/RedBook/dof.rb +110 -109
- data/examples/RedBook/double.rb +40 -38
- data/examples/RedBook/drawf.rb +30 -28
- data/examples/RedBook/feedback.rb +79 -77
- data/examples/RedBook/fog.rb +90 -89
- data/examples/RedBook/font.rb +78 -76
- data/examples/RedBook/hello.rb +29 -27
- data/examples/RedBook/image.rb +57 -55
- data/examples/RedBook/jitter.rb +131 -131
- data/examples/RedBook/light.rb +2 -1
- data/examples/RedBook/lines.rb +70 -68
- data/examples/RedBook/list.rb +48 -46
- data/examples/RedBook/material.rb +200 -199
- data/examples/RedBook/mipmap.rb +84 -82
- data/examples/RedBook/model.rb +55 -53
- data/examples/RedBook/movelight.rb +52 -50
- data/examples/RedBook/pickdepth.rb +103 -101
- data/examples/RedBook/planet.rb +46 -44
- data/examples/RedBook/quadric.rb +97 -95
- data/examples/RedBook/robot.rb +55 -53
- data/examples/RedBook/select.rb +118 -116
- data/examples/RedBook/smooth.rb +35 -33
- data/examples/RedBook/stencil.rb +96 -94
- data/examples/RedBook/stroke.rb +75 -73
- data/examples/RedBook/surface.rb +93 -91
- data/examples/RedBook/teaambient.rb +71 -69
- data/examples/RedBook/teapots.rb +105 -103
- data/examples/RedBook/tess.rb +96 -94
- data/examples/RedBook/texbind.rb +79 -77
- data/examples/RedBook/texgen.rb +88 -86
- data/examples/RedBook/texturesurf.rb +57 -55
- data/examples/RedBook/varray.rb +85 -83
- data/examples/RedBook/wrap.rb +76 -74
- data/examples/misc/OGLBench.rb +114 -113
- data/examples/misc/anisotropic.rb +154 -152
- data/examples/misc/fbo_test.rb +37 -36
- data/examples/misc/font-glut.rb +47 -46
- data/examples/misc/glfwtest.rb +16 -16
- data/examples/misc/plane.rb +13 -13
- data/examples/misc/readpixel.rb +66 -65
- data/examples/misc/sdltest.rb +21 -19
- data/examples/misc/trislam.rb +548 -547
- data/ext/opengl/common.h +16 -38
- data/ext/opengl/conv.h +39 -41
- data/ext/opengl/extconf.rb +4 -31
- data/ext/opengl/funcdef.h +126 -124
- data/ext/opengl/gl-1.0-1.1.c +1917 -1917
- data/ext/opengl/gl-1.2.c +4 -667
- data/ext/opengl/gl-1.3.c +9 -9
- data/ext/opengl/gl-1.4.c +8 -8
- data/ext/opengl/gl-1.5.c +1 -1
- data/ext/opengl/gl-2.0.c +392 -388
- data/ext/opengl/gl-3.0.c +493 -0
- data/ext/opengl/gl-enums.c +1523 -5
- data/ext/opengl/gl-enums.h +4679 -122
- data/ext/opengl/gl-error.c +7 -7
- data/ext/opengl/gl-error.h +4 -4
- data/ext/opengl/gl-ext-arb.c +468 -464
- data/ext/opengl/gl-ext-ext.c +18 -18
- data/ext/opengl/gl-ext-nv.c +15 -15
- data/ext/opengl/gl.c +2 -0
- data/ext/opengl/gl_buffer.c +92 -92
- data/ext/opengl/opengl.c +1 -7
- data/lib/opengl.rb +23 -59
- data/lib/opengl/1.9/opengl.so +0 -0
- data/lib/opengl/2.0/opengl.so +0 -0
- data/lib/opengl/2.1/opengl.so +0 -0
- data/lib/opengl/test_case.rb +1 -2
- data/test/dummy.xorg.conf +140 -0
- data/test/test_gl.rb +18 -22
- data/test/test_gl_10_11.rb +220 -220
- data/test/test_gl_12.rb +11 -122
- data/test/test_gl_13.rb +202 -210
- data/test/test_gl_14.rb +16 -19
- data/test/test_gl_15.rb +2 -4
- data/test/test_gl_20.rb +45 -58
- data/test/test_gl_21.rb +46 -163
- data/test/test_gl_ext_arb.rb +54 -72
- data/test/test_gl_ext_ati.rb +0 -2
- data/test/test_gl_ext_ext.rb +66 -66
- data/test/test_gl_ext_gremedy.rb +8 -15
- data/test/test_gl_ext_nv.rb +109 -112
- data/test/test_opengl_buffer.rb +8 -25
- data/utils/README +0 -5
- data/utils/enumgen.rb +72 -76
- data/utils/extlistgen.rb +55 -55
- metadata +90 -67
- metadata.gz.sig +0 -0
- data/Rakefile.cross +0 -107
- data/docs/build_install.txt +0 -119
- data/docs/extensions.txt.in +0 -348
- data/docs/history.txt +0 -66
- data/docs/requirements_and_design.txt +0 -117
- data/docs/roadmap.txt +0 -28
- data/docs/scientific_use.txt +0 -35
- data/docs/supplies/page_template.html +0 -71
- data/docs/thanks.txt +0 -29
- data/docs/tutorial.txt +0 -469
- data/ext/opengl/glu-enums.c +0 -164
- data/ext/opengl/glu-enums.h +0 -463
- data/ext/opengl/glu.c +0 -1534
- data/ext/opengl/glut.c +0 -1145
- data/ext/opengl/glut_callbacks.c +0 -845
- data/lib/glu.rb +0 -1
- data/lib/glut.rb +0 -1
- data/lib/opengl/opengl.so +0 -0
- data/test/test_glu.rb +0 -309
- data/utils/mkdn2html.rb +0 -59
- data/utils/post-mkdn2html.rb +0 -91
- data/website/images/ogl.jpg +0 -0
- data/website/images/tab_bottom.gif +0 -0
- data/website/style.css +0 -198
data/examples/RedBook/hello.rb
CHANGED
@@ -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
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
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
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
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
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
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()
|
data/examples/RedBook/image.rb
CHANGED
@@ -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
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
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
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
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
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
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
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
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
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
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
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
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
|
data/examples/RedBook/jitter.rb
CHANGED
@@ -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
|
-
|
57
|
-
|
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
|
-
|
64
|
-
|
65
|
-
|
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
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
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
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
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
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
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
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
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
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
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
|
]
|