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

Method constructor

examples/extern/gmath.bundle.js:1554–1561  ·  view source on GitHub ↗
(left, right, bottom, top, near, far)

Source from the content-addressed store, hash-verified

1552 near;
1553 far;
1554 constructor(left, right, bottom, top, near, far){
1555 this.left = left;
1556 this.right = right;
1557 this.bottom = bottom;
1558 this.top = top;
1559 this.near = near;
1560 this.far = far;
1561 }
1562 toMatrix4() {
1563 const c0r0 = 2 / (this.right - this.left);
1564 const c1r1 = 2 / (this.top - this.bottom);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected