1
0

Animation.html 736 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html lang="ko">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../../" />
  6. <script src="page.js"></script>
  7. <link type="text/css" rel="stylesheet" href="page.css" />
  8. </head>
  9. <body>
  10. <h1>애니메이션 상수</h1>
  11. <h2>루프 모드</h2>
  12. <code>
  13. THREE.LoopOnce
  14. THREE.LoopRepeat
  15. THREE.LoopPingPong
  16. </code>
  17. <h2>보간법 모드</h2>
  18. <code>
  19. THREE.InterpolateDiscrete
  20. THREE.InterpolateLinear
  21. THREE.InterpolateSmooth
  22. </code>
  23. <h2>엔딩 모드</h2>
  24. <code>
  25. THREE.ZeroCurvatureEnding
  26. THREE.ZeroSlopeEnding
  27. THREE.WrapAroundEnding
  28. </code>
  29. <h2>소스 코드</h2>
  30. <p>
  31. [link:https://github.com/mrdoob/three.js/blob/master/src/constants.js src/constants.js]
  32. </p>
  33. </body>
  34. </html>