forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunittests_three.html
More file actions
102 lines (87 loc) · 4 KB
/
unittests_three.html
File metadata and controls
102 lines (87 loc) · 4 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ThreeJS Unit Tests - Using build/Three.js</title>
<link rel="stylesheet" href="qunit-1.18.0.css">
</head>
<body>
<div id="qunit"></div>
<script src="qunit-1.18.0.js"></script>
<script src="qunit-utils.js"></script>
<script src="SmartComparer.js"></script>
<!-- add sources to test below -->
<script src="../../build/three.js"></script>
<!-- add class-based unit tests below -->
<script src="cameras/Camera.js"></script>
<script src="cameras/OrthographicCamera.js"></script>
<script src="cameras/PerspectiveCamera.js"></script>
<script src="core/InstancedBufferAttribute.js"></script>
<script src="core/InstancedBufferGeometry.js"></script>
<script src="core/InstancedInterleavedBuffer.js"></script>
<script src="core/InterleavedBuffer.js"></script>
<script src="core/InterleavedBufferAttribute.js"></script>
<script src="core/Raycaster.js"></script>
<script src="core/Face3.js"></script>
<script src="core/Geometry.js"></script>
<script src="core/BufferAttribute.js"></script>
<script src="core/BufferGeometry.js"></script>
<script src="core/Clock.js"></script>
<script src="core/EventDispatcher.js"></script>
<script src="core/Object3D.js"></script>
<script src="math/Constants.js"></script>
<script src="math/Box2.js"></script>
<script src="math/Box3.js"></script>
<script src="math/Plane.js"></script>
<script src="math/Ray.js"></script>
<script src="math/Sphere.js"></script>
<script src="math/Triangle.js"></script>
<script src="math/Vector2.js"></script>
<script src="math/Vector3.js"></script>
<script src="math/Vector4.js"></script>
<script src="math/Euler.js"></script>
<script src="math/Line3.js"></script>
<script src="math/Quaternion.js"></script>
<script src="math/Math.js"></script>
<script src="math/Matrix3.js"></script>
<script src="math/Matrix4.js"></script>
<script src="math/Frustum.js"></script>
<script src="math/Interpolant.js"></script>
<script src="animation/AnimationObjectGroup.js"></script>
<script src="lights/AmbientLight.tests.js"></script>
<script src="lights/DirectionalLight.tests.js"></script>
<script src="lights/HemisphereLight.tests.js"></script>
<script src="lights/PointLight.tests.js"></script>
<script src="lights/SpotLight.tests.js"></script>
<script src="extras/ImageUtils.test.js"></script>
<script src="geometries/BoxGeometry.tests.js"></script>
<script src="geometries/CircleBufferGeometry.tests.js"></script>
<script src="geometries/CircleGeometry.tests.js"></script>
<script src="geometries/CylinderGeometry.tests.js"></script>
<script src="geometries/DodecahedronGeometry.tests.js"></script>
<script src="geometries/EdgesGeometry.js"></script>
<script src="geometries/ExtrudeGeometry.tests.js"></script>
<script src="geometries/IcosahedronGeometry.tests.js"></script>
<script src="geometries/LatheGeometry.tests.js"></script>
<script src="geometries/OctahedronGeometry.tests.js"></script>
<script src="geometries/ParametricGeometry.tests.js"></script>
<script src="geometries/PlaneBufferGeometry.tests.js"></script>
<script src="geometries/PlaneGeometry.tests.js"></script>
<script src="geometries/PolyhedronGeometry.tests.js"></script>
<script src="geometries/RingGeometry.tests.js"></script>
<script src="geometries/ShapeGeometry.tests.js"></script>
<script src="geometries/SphereBufferGeometry.tests.js"></script>
<script src="geometries/SphereGeometry.tests.js"></script>
<script src="geometries/TetrahedronGeometry.tests.js"></script>
<script src="geometries/TextGeometry.tests.js"></script>
<script src="geometries/TorusGeometry.tests.js"></script>
<script src="geometries/TorusKnotGeometry.tests.js"></script>
<script src="geometries/TubeGeometry.tests.js"></script>
<script src="geometries/WireframeGeometry.tests.js"></script>
<script src="extras/helpers/BoxHelper.tests.js"></script>
<!-- for debug output -->
<!--
<script src="../../examples/js/controls/OrbitControls.js"></script>
-->
</body>
</html>