(left, right, bottom, top, near, far)
| 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})`); |
nothing calls this directly
no outgoing calls
no test coverage detected