mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
Add Vector3 method tests covering this PR
This commit is contained in:
parent
96e54685ee
commit
e58bcc0c2a
1 changed files with 5 additions and 1 deletions
|
@ -45,4 +45,8 @@ assert(Vector3.new(2, 4, 8) / 2 == Vector3.new(1, 2, 4))
|
|||
assert(Vector3.new(7, 11, 15) // Vector3.new(3, 5, 7) == Vector3.new(2, 2, 2))
|
||||
assert(Vector3.new(3, 5, 7) // 2 == Vector3.new(1, 2, 3))
|
||||
|
||||
-- TODO: Vector math
|
||||
-- Vector math methods
|
||||
assert(Vector3.new(-1, -2, -3):Abs() == Vector3.new(1, 2, 3))
|
||||
assert(Vector3.new(-1.7, 2, -3):Sign() == Vector3.new(-1, 1, -1))
|
||||
assert(Vector3.new(-1.9, 2.1, 3.5):Ceil() == Vector3.new(-1, 3, 4))
|
||||
assert(Vector3.new(-1.1, 2.99, 3.5):Floor() == Vector3.new(-2, 2, 3))
|
||||
|
|
Loading…
Add table
Reference in a new issue