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

Method mul

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

Source from the content-addressed store, hash-verified

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,
582 y: other,
583 z: other,
584 w: other
585 } : other;
586 return new Vector4(this.x * x, this.y * y, this.z * z, this.w * w6);
587 }
588 div(other) {
589 const { x , y , z , w: w7 } = typeof other === "number" ? {
590 x: other,

Callers 1

dotMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected