Changeset 336 in flair-src for trunk/lib/FlairCore/src/Vector3D.cpp
- Timestamp:
- Oct 8, 2019, 4:41:35 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairCore/src/Vector3D.cpp
r167 r336 218 218 } 219 219 220 template <typename T> float Vector3D<T>::GetNorm(void) const { return sqrt (x * x + y * y + z * z); }220 template <typename T> float Vector3D<T>::GetNorm(void) const { return sqrtf(x * x + y * y + z * z); } 221 221 222 222 template <typename T> void Vector3D<T>::Normalize(void) {
Note:
See TracChangeset
for help on using the changeset viewer.