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

Method toMatrix4

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

Source from the content-addressed store, hash-verified

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 }
915 toArray() {
916 return [
917 this[0],

Callers 2

buildViewProjMatrixMethod · 0.45
fromDecomposedMethod · 0.45

Calls 1

fromMethod · 0.45

Tested by

no test coverage detected