2022-09-19 00:18:48 +00:00
|
|
|
local Vector3 = require("worldeditadditions_core.utils.vector3")
|
2021-06-26 13:22:26 +00:00
|
|
|
|
|
|
|
describe("Vector3.round", function()
|
|
|
|
it("should round a positive vector", function()
|
|
|
|
local a = Vector3.new(3.1, 4.75, 5.9)
|
|
|
|
assert.are.same(
|
2021-06-26 13:40:14 +00:00
|
|
|
Vector3.new(3, 5, 6),
|
|
|
|
a:round()
|
2021-06-26 13:22:26 +00:00
|
|
|
)
|
|
|
|
end)
|
|
|
|
it("should round a negative vector", function()
|
|
|
|
local a = Vector3.new(-3.1, -4.2, -5.3)
|
|
|
|
assert.are.same(
|
2021-06-26 13:40:14 +00:00
|
|
|
Vector3.new(-3, -4, -5),
|
|
|
|
a:round()
|
2021-06-26 13:22:26 +00:00
|
|
|
)
|
|
|
|
end)
|
|
|
|
it("should work with integers", function()
|
|
|
|
local a = Vector3.new(3, 4, 5)
|
|
|
|
assert.are.same(
|
2021-06-26 13:40:14 +00:00
|
|
|
Vector3.new(3, 4, 5),
|
|
|
|
a:round()
|
2021-06-26 13:22:26 +00:00
|
|
|
)
|
|
|
|
end)
|
|
|
|
it("should return a new Vector3 instance", function()
|
|
|
|
local a = Vector3.new(3.1, 4.7, 5.99999)
|
|
|
|
|
|
|
|
local result = a:round()
|
|
|
|
assert.are.same(
|
2021-06-26 13:40:14 +00:00
|
|
|
Vector3.new(3, 5, 6),
|
|
|
|
result
|
2021-06-26 13:22:26 +00:00
|
|
|
)
|
|
|
|
assert.are_not.equal(result, a)
|
|
|
|
end)
|
|
|
|
end)
|