MCPcopy Create free account
hub / github.com/DjDeveloperr/deno_desktop / toMatrix3

Method toMatrix3

examples/extern/gmath.bundle.js:909–911  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

907 return new Matrix2(matrix2mul(this.ptr, other.ptr));
908 }
909 toMatrix3() {
910 return Matrix3.from(this[0][0], this[0][1], 0, this[1][0], this[1][1], 0, 0, 0, 1);
911 }
912 toMatrix4() {
913 return Matrix4.from(this[0][0], this[0][1], 0, 0, this[1][0], this[1][1], 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
914 }

Callers 3

lookAtLhMethod · 0.80
lookAtRhMethod · 0.80
fromDecomposedMethod · 0.80

Calls 1

fromMethod · 0.45

Tested by

no test coverage detected