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

Method set

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

Source from the content-addressed store, hash-verified

552 return this.add(other.sub(this).mul(alpha));
553 }
554 set(other) {
555 this.x = other.x;
556 this.y = other.y;
557 this.z = other.z;
558 this.w = other.w;
559 return this;
560 }
561 add(other) {
562 const { x , y , z , w: w4 } = typeof other === "number" ? {
563 x: other,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected