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