Cleaned interface

Former-commit-id: cdd284de8396d5988853c84d5db17bfa6fa0ba51
This commit is contained in:
Lynix
2013-06-09 22:05:05 +02:00
parent 0612e9bea5
commit 6b2af70f1d
8 changed files with 28 additions and 28 deletions

View File

@@ -29,9 +29,9 @@ NzBox<T>::NzBox(const NzRect<T>& rect)
}
template<typename T>
NzBox<T>::NzBox(const NzVector3<T>& size)
NzBox<T>::NzBox(const NzVector3<T>& lengths)
{
Set(size);
Set(lengths);
}
template<typename T>
@@ -344,9 +344,9 @@ NzBox<T>& NzBox<T>::Set(const NzRect<T>& rect)
}
template<typename T>
NzBox<T>& NzBox<T>::Set(const NzVector3<T>& size)
NzBox<T>& NzBox<T>::Set(const NzVector3<T>& lengths)
{
return Set(size.x, size.y, size.z);
return Set(lengths.x, lengths.y, lengths.z);
}
template<typename T>