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

Method constructor

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

Source from the content-addressed store, hash-verified

1471 near;
1472 far;
1473 constructor(left, right, bottom, top, near, far){
1474 this.left = left;
1475 this.right = right;
1476 this.bottom = bottom;
1477 this.top = top;
1478 this.near = near;
1479 this.far = far;
1480 }
1481 toMatrix4() {
1482 if (this.left > this.right) {
1483 throw new RangeError(`perspective.left (${this.right}) cannot be greater than perspective.right (${this.right})`);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected