Make raymath more consistent (#1197)
* Make raymath naming and functions more consistent * Minor fixes * Fix examples * Fix Physac * New naming rules * Apply naming to Quaternion functions * Apply to models.c * Remove *MulitplyValue / *DivideValue
This commit is contained in:
parent
f0fe03087a
commit
32387317bf
2 changed files with 83 additions and 19 deletions
|
@ -245,7 +245,7 @@ void ResetStar(Star *s)
|
|||
|
||||
} while (!(fabs(s->vel.x) + fabs(s->vel.y) > 1));
|
||||
|
||||
s->pos = Vector2Add(s->pos, Vector2MultiplyV(s->vel, (Vector2){ 8, 8 }));
|
||||
s->pos = Vector2Add(s->pos, Vector2Multiply(s->vel, (Vector2){ 8, 8 }));
|
||||
}
|
||||
|
||||
void UpdateStar(Star *s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue