mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
Pass epsilon to Vector2:FuzzyEq()
This commit is contained in:
parent
362c850b2d
commit
83067d4ec1
1 changed files with 2 additions and 1 deletions
|
@ -48,7 +48,8 @@ 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):FuzzyEq(Vector2.new(1 - 1e-6, 2 + 1e-6), 1e-5))
|
||||
assert(not Vector2.new(1, 2):FuzzyEq(Vector2.new(1.2, 2), 0.1))
|
||||
|
||||
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