Little fail
Plane: Forgot <T> Former-commit-id: 46f5c4a501fcf1ed841e28474cf5bca8e7baa438
This commit is contained in:
parent
f3ccd60b5f
commit
5e709001ad
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue