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

Method eq

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

Source from the content-addressed store, hash-verified

1094 return Matrix3.from(this[0][0], this[1][0], this[2][0], this[0][1], this[1][1], this[2][1], this[0][2], this[1][2], this[2][2]);
1095 }
1096 eq(other) {
1097 return this[0][0] === other[0][0] && this[0][1] === other[0][1] && this[0][2] === other[0][2] && this[1][0] === other[1][0] && this[1][1] === other[1][1] && this[1][2] === other[1][2] && this[2][0] === other[2][0] && this[2][1] === other[2][1] && this[2][2] === other[2][2];
1098 }
1099 isFinite() {
1100 return this.x.isFinite() && this.y.isFinite() && this.z.isFinite();
1101 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected