-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.Vector3Equals
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Check whether two given vectors are almost equal
| Parameter | Default Value | Note |
|---|---|---|
| p | [0, 0, 0] | |
| q | [0, 0, 0] |
| Condition | Return Value |
|---|---|
| (always) | number |
v1 = [1, 2, 3]
v2 = [1, 2, 3]
v3 = [1, 2, 4]
print raylib.Vector3Equals(v1, v2) // 1 (true)
print raylib.Vector3Equals(v1, v3) // 0 (false)