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

Method toArray

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

Source from the content-addressed store, hash-verified

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],
918 this[1]
919 ];
920 }
921 toFloat32Array() {
922 return new Float32Array(this.#internal);
923 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected