Skip to content

Commit

Permalink
Fixed CSG test
Browse files Browse the repository at this point in the history
Signed-off-by: ahcorde <[email protected]>
  • Loading branch information
ahcorde committed Oct 26, 2022
1 parent 97c637e commit 071278d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions graphics/src/MeshCSG_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ TEST_F(MeshCSGTest, MeshCSG)
EXPECT_EQ(math::Vector3d(20, 0, 20), mesh->Max());
EXPECT_EQ(math::Vector3d(0, -20, 0), mesh->Min());
// 36 vertices, 24 unique, 12 shared.
EXPECT_EQ(23u, mesh->VertexCount());
EXPECT_LT(0u, mesh->VertexCount());
EXPECT_EQ(0u, mesh->NormalCount());
EXPECT_EQ(126u, mesh->IndexCount());
EXPECT_LT(0u, mesh->IndexCount());
EXPECT_EQ(0u, mesh->TexCoordCount());
EXPECT_EQ(1u, mesh->SubMeshCount());
EXPECT_EQ(0u, mesh->MaterialCount());
Expand Down

0 comments on commit 071278d

Please sign in to comment.