Const
Apply a true modulus (i.e. where -1 % 3 == 2) to a Vector2.
For JS-style modulus (who wants that?) use Vec2.map2((a,b) => a % b)
Vec2.map2((a,b) => a % b)
Apply a true modulus (i.e. where -1 % 3 == 2) to a Vector2.
For JS-style modulus (who wants that?) use
Vec2.map2((a,b) => a % b)