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

Method Frustum

include/Matrix.hpp:146–148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144 Matrix operator*(float value) { return ::MatrixMultiplyValue(*this, value); }
145
146 static Matrix Frustum(double left, double right, double bottom, double top, double near, double far) {
147 return ::MatrixFrustum(left, right, bottom, top, near, far);
148 }
149
150 static Matrix Perspective(double fovy, double aspect, double near, double far) {
151 return ::MatrixPerspective(fovy, aspect, near, far);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected