PartDesign: add interactive gizmos

This commit is contained in:
captain0xff
2025-06-11 16:47:17 +05:30
committed by Kacper Donat
parent 2f970a7135
commit 66c458f9dc
47 changed files with 3207 additions and 404 deletions

View File

@@ -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
{