D | type_vec3.inl | 63 GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec3<T, P>::tvec3(T scalar) argument 64 : x(scalar), y(scalar), z(scalar) 72 // -- Conversion scalar constructors -- 181 GLM_FUNC_QUALIFIER tvec3<T, P> & tvec3<T, P>::operator+=(U scalar) argument 183 this->x += static_cast<T>(scalar); 184 this->y += static_cast<T>(scalar); 185 this->z += static_cast<T>(scalar); 211 GLM_FUNC_QUALIFIER tvec3<T, P> & tvec3<T, P>::operator-=(U scalar) argument 213 this->x -= static_cast<T>(scalar); 214 this->y -= static_cast<T>(scalar); [all …]
|