Suppressions of getters

Former-commit-id: db5ae144a8eb8794e7df9981805d2250bbd8b4ee
This commit is contained in:
Gawaboumga
2014-07-04 11:31:51 +02:00
parent ba7f3606a0
commit 60d045e139
6 changed files with 1 additions and 37 deletions

View File

@@ -58,18 +58,6 @@ T NzPlane<T>::Distance(T x, T y, T z) const
return Distance(NzVector3<T>(x, y, z));
}
template<typename T>
NzVector3<T> NzPlane<T>::GetNormal() const
{
return normal;
}
template<typename T>
T NzPlane<T>::GetDistance() const
{
return distance;
}
template<typename T>
NzPlane<T>& NzPlane<T>::Set(T normalX, T normalY, T normalZ, T D)
{