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

Method toArray

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

Source from the content-addressed store, hash-verified

761 return `Vector2 { x: ${this[0]}, y: ${this[1]} }`;
762 }
763 toArray() {
764 return [
765 this[0],
766 this[1]
767 ];
768 }
769 toFloat32Array() {
770 return this.#internal;
771 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected