1
0
Fork 0

Fixed Vector3.h compilation in MSVC2008.

This commit is contained in:
madmaxoft 2014-07-10 12:37:21 +02:00
parent a6d30a7254
commit ce670accc9
1 changed files with 9 additions and 0 deletions

View File

@ -316,6 +316,15 @@ protected:
template <> Vector3<int> Vector3<int>::Floor(void) const
{
return *this;
}
template <typename T>
const double Vector3<T>::EPS = 0.000001;