Skip to content

raylib.Vector3OrthoNormalize

JoeStrout edited this page Apr 29, 2026 · 2 revisions

Orthonormalize provided vectors Makes vectors normalized and orthogonal to each other Gram-Schmidt function implementation

Parameters

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

Return value

Condition Return Value
(always) map

Notes

Example

v1 = [1, 1, 0]
v2 = [0, 1, 0]
result = raylib.Vector3OrthoNormalize(v1, v2)
// result is a map with the orthonormalized v1 and v2
print result

Clone this wiki locally