Math/Angle: Rename angle field to value

This commit is contained in:
Lynix
2018-10-10 23:12:27 +02:00
parent 7613f50a6e
commit fb11fe1ecf
6 changed files with 42 additions and 42 deletions

View File

@@ -20,7 +20,7 @@ SCENARIO("Billboard", "[GRAPHICS][BILLBOARD]")
{
REQUIRE(billboard.GetColor() == materialColor);
REQUIRE(billboard.GetMaterial().Get() == materialRef.Get());
REQUIRE(billboard.GetRotation().angle == Approx(0.f));
REQUIRE(billboard.GetRotation().value == Approx(0.f));
REQUIRE(billboard.GetSize() == Nz::Vector2f(64.f, 64.f)); // Default sizes
}