change 4 spaces to tab for src/BulletInverseDynamics

fix unit test in single precision compilation (use delta t of 0.01 if BT_ID_USE_DOUBLE_PRECISION is not defined)
This commit is contained in:
erwincoumans
2015-11-19 12:08:04 -08:00
parent 069936218a
commit 75d657ec85
15 changed files with 2097 additions and 2089 deletions

View File

@@ -1,5 +1,5 @@
/// @file Math utility functions used in inverse dynamics library.
/// Defined here as they may not be provided by the math library.
/// Defined here as they may not be provided by the math library.
#ifndef IDMATH_HPP_
#define IDMATH_HPP_
@@ -39,7 +39,7 @@ bool isPositiveSemiDefiniteFuzzy(const mat33& m);
/// Determinant of 3x3 matrix
/// NOTE: implemented here for portability, as determinant operation
/// will be implemented differently for various matrix/vector libraries
/// will be implemented differently for various matrix/vector libraries
/// @param m a 3x3 matrix
/// @return det(m)
idScalar determinant(const mat33& m);