Skip to content

raylib.MatrixFrustum

JoeStrout edited this page Apr 29, 2026 · 2 revisions

Get perspective projection matrix

Parameters

Parameter Default Value Note
left -1
right 1
bottom -1
top 1
nearPlane 0.01
farPlane 1000

Return value

Condition Return Value
(always) map

Notes

Example

proj = raylib.MatrixFrustum(-1, 1, -1, 1, 0.1, 100)

Clone this wiki locally