Matrix3.js 318 B

123456789101112131415161718192021
  1. THREE.Matrix3 = function () {
  2. this.m = [];
  3. };
  4. THREE.Matrix3.prototype = {
  5. transpose: function () {
  6. var tmp;
  7. tmp = this.m[1]; this.m[1] = this.m[3]; this.m[3] = tmp;
  8. tmp = this.m[2]; this.m[2] = this.m[6]; this.m[6] = tmp;
  9. tmp = this.m[5]; this.m[5] = this.m[7]; this.m[7] = tmp;
  10. return this;
  11. }
  12. }
粤ICP备19079148号