-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathgeometry.js
180 lines (158 loc) · 7.45 KB
/
geometry.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
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
module("Geometry", {
setup : function() {
stop();
var that = this;
this.cb = function(e) {
ok(true, "Scene loaded");
that.doc = document.getElementById("xml3dframe").contentDocument;
start();
};
loadDocument("scenes/points.html"+window.location.search, this.cb);
},
teardown : function() {
var v = document.getElementById("xml3dframe");
v.removeEventListener("load", this.cb, true);
}
});
test("Color Points", 14, function() {
var xTest = this.doc.getElementById("myXml3d"),
glTest = getContextForXml3DElement(xTest), hTest = getHandler(xTest);
var self = this;
var testStep = 0;
function onFrameDrawn(){
if( XML3DUnit.getPixelValue(glTest, 300, 170)[0] == 0)
return;
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 300, 170), [255,255,255,255], PIXEL_EPSILON,
"Lower Point has correct color" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 300, 233), [102,102,102,255], PIXEL_EPSILON,
"Upper Point has correct color" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 267, 202), [153,153,153,255], PIXEL_EPSILON,
"Left Point has correct color" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 331, 202), [204,204,204,255], PIXEL_EPSILON,
"Right Point has correct color" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 300, 200), [0,0,0,0], PIXEL_EPSILON,
"Center points is transparent" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 283, 166), [0,0,0,0], PIXEL_EPSILON,
"Dimensions of medium distance points are small enough" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 284, 166), [255,255,255,255], PIXEL_EPSILON,
"Dimensions of medium distance points are big enough" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 283, 166), [0,0,0,0], PIXEL_EPSILON,
"Dimensions of medium distance points are small enough" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 280, 37), [255,255,255,255], PIXEL_EPSILON,
"Dimensions of near distance points are big enough" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 279, 37), [0,0,0,0], PIXEL_EPSILON,
"Dimensions of near distance points are big enough" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 288, 273), [255,255,255,255], PIXEL_EPSILON,
"Dimensions of near distance points are big enough" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 287, 273), [0,0,0,0], PIXEL_EPSILON,
"Dimensions of near distance points are big enough" );
start();
}
stop();
xTest.addEventListener("framedrawn", onFrameDrawn);
hTest.draw();
});
test("Texture Points", 7, function() {
var xTest = this.doc.getElementById("myXml3d"),
glTest = getContextForXml3DElement(xTest), hTest = getHandler(xTest);
var self = this;
var testStep = 0;
function onFrameDrawn(){
if( XML3DUnit.getPixelValue(glTest, 172, 168)[1] != 255)
return;
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 172, 168), [0,255,0,255], PIXEL_EPSILON,
"Lower Point has correct texture" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 172, 232), [0,0,255,255], PIXEL_EPSILON,
"Upper Point has correct texture" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 138, 200), [255,0,0,255], PIXEL_EPSILON,
"Left Point has correct texture" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 198, 200), [0,255,255,255], PIXEL_EPSILON,
"Right Point has correct texture" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 158, 155), [0,0,0,0], PIXEL_EPSILON,
"Corner Point is transparent due to round texture image" );
start();
}
stop();
xTest.addEventListener("framedrawn", onFrameDrawn);
hTest.draw();
});
test("Texture Color Points", 6, function() {
var xTest = this.doc.getElementById("myXml3d"),
glTest = getContextForXml3DElement(xTest), hTest = getHandler(xTest);
var self = this;
var testStep = 0;
function onFrameDrawn(){
if( XML3DUnit.getPixelValue(glTest, 428, 167)[1] != 255)
return;
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 428, 167), [0,255,0,255], PIXEL_EPSILON,
"Lower Point has correct texture and color" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 428, 231), [0,0,102,255], PIXEL_EPSILON,
"Upper Point has correct texture and color" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 396, 200), [153,0,0,255], PIXEL_EPSILON,
"Left Point has correct texture and color" );
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 460, 200), [0,204,204,255], PIXEL_EPSILON,
"Right Point has correct texture and color" );
start();
}
stop();
xTest.addEventListener("framedrawn", onFrameDrawn);
hTest.draw();
});
module("Geometry", {
setup : function() {
stop();
var that = this;
this.cb = function(e) {
ok(true, "Scene loaded");
that.doc = document.getElementById("xml3dframe").contentDocument;
start();
};
loadDocument("scenes/lines.html"+window.location.search, this.cb);
},
teardown : function() {
var v = document.getElementById("xml3dframe");
v.removeEventListener("load", this.cb, true);
}
});
test("Color Lines", 8, function() {
var xTest = this.doc.getElementById("myXml3d"),
glTest = getContextForXml3DElement(xTest), hTest = getHandler(xTest);
var self = this;
var rangedTest = function(x, y) {
var sum = [0,0,0,0];
var samp = XML3DUnit.getPixelValue(glTest, x, y);
sum[0] += samp[0]; sum[1] += samp[1]; sum[2] += samp[2]; sum[3] += samp[3];
samp = XML3DUnit.getPixelValue(glTest, x+1, y);
sum[0] += samp[0]; sum[1] += samp[1]; sum[2] += samp[2]; sum[3] += samp[3];
samp = XML3DUnit.getPixelValue(glTest, x-1, y);
sum[0] += samp[0]; sum[1] += samp[1]; sum[2] += samp[2]; sum[3] += samp[3];
samp = XML3DUnit.getPixelValue(glTest, x, y+1);
sum[0] += samp[0]; sum[1] += samp[1]; sum[2] += samp[2]; sum[3] += samp[3];
samp = XML3DUnit.getPixelValue(glTest, x, y-1);
sum[0] += samp[0]; sum[1] += samp[1]; sum[2] += samp[2]; sum[3] += samp[3];
return sum;
};
var testStep = 0;
function onFrameDrawn(){
if( rangedTest(300, 211)[0] == 0)
return;
ok( rangedTest(300, 211)[0] > 0 , PIXEL_EPSILON, "Center Vertical Line exists");
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 300, 233), [0,0,0,0], PIXEL_EPSILON,
"Center Vertical Line has right length" );
ok( rangedTest(316, 200)[0] > 0 , PIXEL_EPSILON, "Center Horizontal Line exists");
QUnit.closeArray(XML3DUnit.getPixelValue(glTest, 333, 200), [0,0,0,0], PIXEL_EPSILON,
"Center Horizontal Line has right length" );
ok(rangedTest(217, 200)[3] != 0 &&
rangedTest(203, 215)[3] != 0 &&
rangedTest(186, 200)[3] != 0,
"Indexed Line correct");
ok(rangedTest(410, 199)[3] != 0 &&
rangedTest(412, 216)[3] != 0 &&
rangedTest(379, 215)[3] != 0,
"Linestrips correct");
start();
}
stop();
xTest.addEventListener("framedrawn", onFrameDrawn);
hTest.draw();
});