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

Method toString

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

Source from the content-addressed store, hash-verified

607 return isFinite(this.x) && isFinite(this.y) && isFinite(this.z) && isFinite(this.w);
608 }
609 toString() {
610 return `Vector4 { x: ${this[0]}, y: ${this[1]}, z: ${this[2]}, w: ${this[3]} }`;
611 }
612 toArray() {
613 return [
614 this[0],

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected