Skip to content

raylib.Vector3Invert

JoeStrout edited this page Apr 29, 2026 · 2 revisions

Invert the given vector

Parameters

Parameter Default Value Note
v [0, 0, 0]

Return value

Condition Return Value
(always) list

Notes

Example

v = [2, 4, 8]
result = raylib.Vector3Invert(v)
print result  // [0.5, 0.25, 0.125]

Clone this wiki locally