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

Method sub

examples/extern/gmath.bundle.js:570–578  ·  view source on GitHub ↗
(other)

Source from the content-addressed store, hash-verified

568 return new Vector4(this.x + x, this.y + y, this.z + z, this.w + w4);
569 }
570 sub(other) {
571 const { x , y , z , w: w5 } = typeof other === "number" ? {
572 x: other,
573 y: other,
574 z: other,
575 w: other
576 } : other;
577 return new Vector4(this.x - x, this.y - y, this.z - z, this.w - w5);
578 }
579 mul(other) {
580 const { x , y , z , w: w6 } = typeof other === "number" ? {
581 x: other,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected