Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Remi Beges
2012-07-24 14:35:05 +02:00
112 changed files with 4780 additions and 1469 deletions

View File

@@ -39,10 +39,10 @@ z(vec[2])
}
template<typename T>
NzVector3<T>::NzVector3(const NzVector2<T>& vec) :
NzVector3<T>::NzVector3(const NzVector2<T>& vec, T Z) :
x(vec.x),
y(vec.y),
z(0)
z(Z)
{
}