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

Method transpose

examples/extern/gmath.bundle.js:855–857  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

853 return new Matrix2(this.x, this.y);
854 }
855 transpose() {
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 }

Callers 1

lookToLhMethod · 0.45

Calls 1

fromMethod · 0.45

Tested by

no test coverage detected