|
|
|
@ -314,7 +314,9 @@ template<class T> class BasicTranslationRotationScalingTransformation3D: public |
|
|
|
|
|
|
|
|
|
|
|
Math::Vector3<T> _translation; |
|
|
|
Math::Vector3<T> _translation; |
|
|
|
Math::Quaternion<T> _rotation; |
|
|
|
Math::Quaternion<T> _rotation; |
|
|
|
Math::Vector3<T> _scaling{T(1)}; |
|
|
|
/* Can't {} on GCC 4.7, _scaling(T(1)) fails on the most vexing parse
|
|
|
|
|
|
|
|
(what the ... eh???) */ |
|
|
|
|
|
|
|
Math::Vector3<T> _scaling = Math::Vector3<T>(T(1)); |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
|