benchmarks.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>ThreeJS Benchmark Tests - Using Files in /src</title>
  6. <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:700" rel="stylesheet" type="text/css">
  7. <link href="normalize.css" rel="stylesheet" type="text/css">
  8. <link href="style.css" rel="stylesheet" type="text/css">
  9. <script src="../../build/three.min.js"></script>
  10. <script src="vendor/lodash.min.js"></script>
  11. <script src="vendor/benchmark-2.1.0.min.js"></script>
  12. <script src="benchmark.js"></script>
  13. <script src="core/Vector3Components.js"></script>
  14. <script src="core/Vector3Storage.js"></script>
  15. <script src="core/Vector3Length.js"></script>
  16. <script src="core/Float32Array.js"></script>
  17. <script src="core/UpdateMatrixWorld.js"></script>
  18. </head>
  19. <body>
  20. <header>
  21. <h1>Three JS Benchmarks Suite</h1>
  22. </header>
  23. <section>
  24. </section>
  25. <template id="suite">
  26. <article>
  27. <header>
  28. <h2></h2>
  29. <h3>Start</h3>
  30. </header>
  31. <div class="results">
  32. <div class"head">
  33. <p class="name">Name</p>
  34. <p class="ops">Ops / Sec</p>
  35. <p class="desv">±</p>
  36. </div>
  37. </div>
  38. </article>
  39. </template>
  40. <template id="suite-test">
  41. <div>
  42. <p class="name"></p>
  43. <p class="ops"></p>
  44. <p class="desv"></p>
  45. </div>
  46. </template>
  47. </body>
  48. </html>