Matrix3.html 843 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 3x3 matrix.</div>
  12. <h2>Constructor</h2>
  13. <h3>[name]()</h3>
  14. <h2>Properties</h2>
  15. <h3>.[page:Float32Array elements]</h3>
  16. <div>
  17. Float32Array with matrix values.
  18. </div>
  19. <h2>Methods</h2>
  20. <h3>.transpose() [page:Matrix3]</h3>
  21. <div>
  22. Transposes this matrix in place.
  23. </div>
  24. <h3>.transposeIntoArray( [page:Array r] ) [page:Matrix3]</h3>
  25. <div>
  26. Transposes this matrix into the supplied array *r*, and returns itself.
  27. </div>
  28. <h2>Source</h2>
  29. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  30. </body>
  31. </html>