UV.html 963 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <script src="../../list.js"></script>
  6. <script src="../../page.js"></script>
  7. <link type="text/css" rel="stylesheet" href="../../page.css" />
  8. </head>
  9. <body>
  10. <h1>[name]</h1>
  11. <div class="desc">A texture coordinate.</div>
  12. <h2>Example</h2>
  13. <code>var uv = new THREE.UV( 0, 1 );</code>
  14. <h2>Constructor</h2>
  15. <h3>[name]( [page:Float u], [page:Float v] )</h3>
  16. <div>
  17. u — Horizontal coordinate.<br />
  18. v — Vertical coordinate.<br />
  19. </div>
  20. <h2>Properties</h2>
  21. <h3>.[page:Float u]</h3>
  22. <div>
  23. Horizontal coordinate.<br />
  24. </div>
  25. <h3>.[page:Float v]</h3>
  26. <div>
  27. Vertical coordinate.<br />
  28. </div>
  29. <h2>Methods</h2>
  30. <h3>.set( [page:Float u], [page:Float v] )</h3>
  31. <h3>.copy( [page:UV uv] )</h3>
  32. <h3>.clone() [page:UV]</h3>
  33. <h2>Source</h2>
  34. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  35. </body>
  36. </html>