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