add missing namespace."

pull/2656/head
Kim Kulling 2019-09-17 22:11:58 +02:00
parent 2edcf82f5a
commit f5dcd5060f
2 changed files with 1 additions and 3 deletions

View File

@ -49,8 +49,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef AI_MATERIAL_INL_INC
#define AI_MATERIAL_INL_INC
#include <assimp/MathFunctions.h>
// ---------------------------------------------------------------------------
inline aiPropertyTypeInfo ai_real_to_property_type_info(float)
{

View File

@ -441,7 +441,7 @@ void aiMatrix4x4t<TReal>::Decompose(aiVector3t<TReal>& pScaling, aiVector3t<TRea
*/
// Use a small epsilon to solve floating-point inaccuracies
const TReal epsilon = Math::getEpsilon<TReal>();
const TReal epsilon = Assimp::Math::getEpsilon<TReal>();
pRotation.y = std::asin(-vCols[0].z);// D. Angle around oY.