/// @ref gtx_type_trait /// @file glm/gtx/type_trait.inl namespace glm { template bool const type::is_vec; template bool const type::is_mat; template bool const type::is_quat; template length_t const type::components; template length_t const type::cols; template length_t const type::rows; // vec template bool const type >::is_vec; template bool const type >::is_mat; template bool const type >::is_quat; template length_t const type >::components; // mat template bool const type >::is_vec; template bool const type >::is_mat; template bool const type >::is_quat; template length_t const type >::components; template length_t const type >::cols; template length_t const type >::rows; // tquat template bool const type >::is_vec; template bool const type >::is_mat; template bool const type >::is_quat; template length_t const type >::components; // tdualquat template bool const type >::is_vec; template bool const type >::is_mat; template bool const type >::is_quat; template length_t const type >::components; }//namespace glm