Skip to content

raylib.Vector4Min

JoeStrout edited this page Apr 29, 2026 · 2 revisions

Get min value for each pair of components

Parameters

Parameter Default Value Note
v1 [0, 0, 0, 0]
v2 [0, 0, 0, 0]

Return value

Condition Return Value
(always) list

Notes

Example

v1 = [1, 5, 2, 8]
v2 = [3, 2, 7, 4]
result = raylib.Vector4Min(v1, v2)
print result  // [1, 2, 2, 4]

Clone this wiki locally