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

Method eq

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

Source from the content-addressed store, hash-verified

601 return other.sub(this).div(2).add(this);
602 }
603 eq(other) {
604 return this.x === other.x && this.y === other.y && this.z === other.z && this.w === other.w;
605 }
606 isFinite() {
607 return isFinite(this.x) && isFinite(this.y) && isFinite(this.z) && isFinite(this.w);
608 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected