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

Method toArray

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

Source from the content-addressed store, hash-verified

610 return `Vector4 { x: ${this[0]}, y: ${this[1]}, z: ${this[2]}, w: ${this[3]} }`;
611 }
612 toArray() {
613 return [
614 this[0],
615 this[1],
616 this[2],
617 this[3]
618 ];
619 }
620 toFloat32Array() {
621 return this.#internal;
622 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected