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

@@ -55,18 +55,6 @@ NzVector3<T> NzRay<T>::GetClosestPoint(const NzVector3<T>& point) const
return GetPoint(proj/vsq);
}
template<typename T>
NzVector3<T> NzRay<T>::GetDirection() const
{
return direction;
}
template<typename T>
NzVector3<T> NzRay<T>::GetOrigin() const
{
return origin;
}
template<typename T>
NzVector3<T> NzRay<T>::GetPoint(T lambda) const
{
@@ -302,7 +290,7 @@ NzString NzRay<T>::ToString() const
{
NzStringStream ss;
return ss << "Ray(" << origin.x << ", " << origin.y << ", " << origin.z << " | direction: " << direction.x << ", " << direction.y << ", " << direction.z << ')';
return ss << "Ray(origin: " << origin.ToString() << ", direction: " << direction.ToString() << ")";
}
template<typename T>