| 152 | } |
| 153 | |
| 154 | static Matrix Ortho(double left, double right, double bottom, double top, double near, double far) { |
| 155 | return ::MatrixOrtho(left, right, bottom, top, near, far); |
| 156 | } |
| 157 | |
| 158 | static Matrix LookAt(Vector3 eye, Vector3 target, Vector3 up) { return ::MatrixLookAt(eye, target, up); } |
| 159 |
nothing calls this directly
no outgoing calls
no test coverage detected