C++11: Reimplemented VectorT without macros.

This commit is contained in:
Hans-Christian Ebke
2015-11-18 15:11:48 +01:00
parent a45c7f2508
commit 287da20912
3 changed files with 763 additions and 67 deletions

View File

@@ -169,7 +169,7 @@ TEST_F(OpenMeshOthers, CalcDihedralAngre ) {
double difference = fabs( 1.36944 - mesh_.calc_dihedral_angle(eh) );
EXPECT_TRUE( (difference < 0.00001 ) ) << "Wrong Dihedral angle, Difference is to big!" << std::endl;
EXPECT_LT(difference, 0.00001) << "Wrong Dihedral angle, Difference is to big!" << std::endl;
}
}