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

Method eq

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

Source from the content-addressed store, hash-verified

856 return Matrix2.from(this[0][0], this[1][0], this[0][1], this[1][1]);
857 }
858 eq(other) {
859 return this[0][0] === other[0][0] && this[0][1] === other[0][1] && this[1][0] === other[1][0] && this[1][1] === other[1][1];
860 }
861 isFinite() {
862 return this.x.isFinite() && this.y.isFinite();
863 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected