1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>ThreeJS Test Suite - Using Files in /src</title>
- <link rel="stylesheet" href="qunit/qunit-1.10.0.css">
- </head>
- <body>
- <div id="qunit"></div>
- <script src="qunit/qunit-1.10.0.js"></script>
- <!-- add ThreeJS sources to test below -->
- <script src="../src/Three.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/Box2.js"></script>
- <script src="../src/math/Box3.js"></script>
- <script src="../src/math/Plane.js"></script>
- <script src="../src/math/Ray.js"></script>
- <script src="../src/math/Sphere.js"></script>
- <script src="../src/math/Triangle.js"></script>
- <script src="../src/math/Matrix3.js"></script>
- <script src="../src/math/Matrix4.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>
-
- </body>
- </html>
|