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

Method toArray

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

Source from the content-addressed store, hash-verified

434 return `Vector3 { x: ${this[0]}, y: ${this[1]}, z: ${this[2]} }`;
435 }
436 toArray() {
437 return [
438 this[0],
439 this[1],
440 this[2]
441 ];
442 }
443 toFloat32Array() {
444 return this.#internal;
445 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected