-
Notifications
You must be signed in to change notification settings - Fork 2
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
| Parameter | Default Value | Note |
|---|---|---|
| v1 | [1, 0, 0] | |
| v2 | [0, 1, 0] |
| Condition | Return Value |
|---|---|
| (always) | map |
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