Animation.html 749 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../../" />
  6. <script src="list.js"></script>
  7. <script src="page.js"></script>
  8. <link type="text/css" rel="stylesheet" href="page.css" />
  9. </head>
  10. <body>
  11. <h1>Animation Constants</h1>
  12. <h2>Loop Modes</h2>
  13. <code>
  14. THREE.LoopOnce
  15. THREE.LoopRepeat
  16. THREE.LoopPingPong
  17. </code>
  18. <h2>Interpolation Modes</h2>
  19. <code>
  20. THREE.InterpolateDiscrete
  21. THREE.InterpolateLinear
  22. THREE.InterpolateSmooth
  23. </code>
  24. <h2>Ending Modes</h2>
  25. <code>
  26. THREE.ZeroCurvatureEnding
  27. THREE.ZeroSlopeEnding
  28. THREE.WrapAroundEnding
  29. </code>
  30. <h2>Source</h2>
  31. [link:https://github.com/mrdoob/three.js/blob/master/src/constants.js src/constants.js]
  32. </body>
  33. </html>