Update AssimpAPITest_aiMatrix4x4.cpp

pull/5445/head
Kim Kulling 2024-02-06 21:05:54 +01:00 committed by GitHub
parent 8726e20493
commit 326c4cfacc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ protected:
TEST_F(AssimpAPITest_aiMatrix4x4, isIdendityTest) {
aiMatrix4x4 m = aiMatrix4x4(1.001f, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
EXPECT_TRUE(m.IsIdentity(1e-6f));
EXPECT_TRUE(m.IsIdentity(1e-3f));
}
TEST_F(AssimpAPITest_aiMatrix4x4, aiIdentityMatrix4Test) {