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

Method set

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

Source from the content-addressed store, hash-verified

707 return this.add(other.sub(this).mul(alpha));
708 }
709 set(other) {
710 this.x = other.x;
711 this.y = other.y;
712 return this;
713 }
714 add(other) {
715 const { x , y } = typeof other === "number" ? {
716 x: other,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected