forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunittests_sources.html
More file actions
67 lines (59 loc) · 2.46 KB
/
unittests_sources.html
File metadata and controls
67 lines (59 loc) · 2.46 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ThreeJS Unit Tests - Using Files in /src</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>
<!-- add sources to test below -->
<script src="../../src/Three.js"></script>
<script src="../../src/math/Color.js"></script>
<script src="../../src/math/Quaternion.js"></script>
<script src="../../src/math/Vector2.js"></script>
<script src="../../src/math/Vector3.js"></script>
<script src="../../src/math/Vector4.js"></script>
<script src="../../src/math/Euler.js"></script>
<script src="../../src/math/Line3.js"></script>
<script src="../../src/math/Box2.js"></script>
<script src="../../src/math/Box3.js"></script>
<script src="../../src/math/Matrix3.js"></script>
<script src="../../src/math/Matrix4.js"></script>
<script src="../../src/math/Ray.js"></script>
<script src="../../src/math/Sphere.js"></script>
<script src="../../src/math/Frustum.js"></script>
<script src="../../src/math/Plane.js"></script>
<script src="../../src/math/Math.js"></script>
<script src="../../src/math/Triangle.js"></script>
<script src="../../src/math/Interpolant.js"></script>
<script src="../../src/extras/core/Curve.js"></script>
<script src="../../src/extras/CurveUtils.js"></script>
<script src="../../src/extras/curves/CatmullRomCurve3.js"></script>
<script src="../../src/extras/curves/ClosedSplineCurve3.js"></script>
<!-- add class-based unit tests below -->
<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/Color.js"></script>
<script src="math/Interpolant.js"></script>
<script src="extras/curves/ClosedSplineCurve3.js"></script>
<script src="extras/curves/CatmullRomCurve3.js"></script>
</body>
</html>