Little fail

Plane: Forgot <T>

Former-commit-id: 46f5c4a501fcf1ed841e28474cf5bca8e7baa438
This commit is contained in:
Gawaboumga 2014-06-28 09:03:56 +02:00
parent f3ccd60b5f
commit 5e709001ad
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ class NzPlane
T Distance(const NzVector3<T>& point) const;
T Distance(T x, T y, T z) const;
NzVector3 GetNormal() const;
NzVector3<T> GetNormal() const;
T GetDistance() const;
NzPlane& Set(T normalX, T normalY, T normalZ, T Distance);

View File

@ -59,7 +59,7 @@ T NzPlane<T>::Distance(T x, T y, T z) const
}
template<typename T>
NzVector3 NzPlane<T>::GetNormal() const
NzVector3<T> NzPlane<T>::GetNormal() const
{
return normal;
}