/// @ref gtx_transform /// @file glm/gtx/transform.inl namespace glm { template GLM_FUNC_QUALIFIER tmat4x4 translate(tvec3 const & v) { return translate(tmat4x4(static_cast(1)), v); } template GLM_FUNC_QUALIFIER tmat4x4 rotate(T angle, tvec3 const & v) { return rotate(tmat4x4(static_cast(1)), angle, v); } template GLM_FUNC_QUALIFIER tmat4x4 scale(tvec3 const & v) { return scale(tmat4x4(static_cast(1)), v); } }//namespace glm