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

Method toArray

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

Source from the content-addressed store, hash-verified

1150 return Matrix4.from(this[0][0], this[0][1], this[0][2], 0, this[1][0], this[1][1], this[1][2], 0, this[2][0], this[2][1], this[2][2], 0, 0, 0, 0, 1);
1151 }
1152 toArray() {
1153 return [
1154 this[0],
1155 this[1],
1156 this[2]
1157 ];
1158 }
1159 toFloat32Array() {
1160 return new Float32Array(this.#internal);
1161 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected