PartDesign: add interactive gizmos
This commit is contained in:
committed by
Kacper Donat
parent
2f970a7135
commit
66c458f9dc
@@ -437,6 +437,15 @@ Vector3<float_type>& Vector3<float_type>::Normalize()
|
||||
return *this;
|
||||
}
|
||||
|
||||
template<class float_type>
|
||||
Vector3<float_type> Vector3<float_type>::Normalized() const
|
||||
{
|
||||
Vector3<float_type> copy = *this;
|
||||
copy.Normalize();
|
||||
|
||||
return copy;
|
||||
}
|
||||
|
||||
template<class float_type>
|
||||
bool Vector3<float_type>::IsNull() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user