-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.MatrixSubtract
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Subtract two matrices (left - right)
| Parameter | Default Value | Note |
|---|---|---|
| left | MatrixIdentity | |
| right | MatrixIdentity |
| Condition | Return Value |
|---|---|
| (always) | map |
a = raylib.MatrixIdentity
b = raylib.MatrixIdentity
result = raylib.MatrixSubtract(a, b)
// Result is the zero matrix (identity minus itself)