-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.Vector2Transform
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Transforms a Vector2 by a given Matrix
| Parameter | Default Value | Note |
|---|---|---|
| v | [0, 0] | |
| mat | MatrixIdentity |
| Condition | Return Value |
|---|---|
| (always) | list |
v = [1, 0]
mat = raylib.MatrixIdentity
result = raylib.Vector2Transform(v, mat)
print result // [1, 0] (identity transform, unchanged)