MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / Perspective

Method Perspective

include/Matrix.hpp:150–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

148 }
149
150 static Matrix Perspective(double fovy, double aspect, double near, double far) {
151 return ::MatrixPerspective(fovy, aspect, near, far);
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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected