main sync #3

Merged
Patrick Busch merged 318 commits from blender/blender:main into main 2023-03-17 15:52:21 +01:00
3 changed files with 0 additions and 12 deletions
Showing only changes of commit bd3c6801da - Show all commits

View File

@ -27,11 +27,6 @@ namespace blender::math {
namespace detail { namespace detail {
/* Forward declaration for casting operators. */
template<typename T> struct Euler3;
template<typename T> struct EulerXYZ;
template<typename T> struct Quaternion;
template<typename T, typename AngleT> struct AxisAngle { template<typename T, typename AngleT> struct AxisAngle {
using vec3_type = VecBase<T, 3>; using vec3_type = VecBase<T, 3>;

View File

@ -130,10 +130,6 @@ template<typename T> struct EulerBase {
/** \name EulerXYZ /** \name EulerXYZ
* \{ */ * \{ */
/* Forward declaration for casting operators. */
template<typename T, typename AngleT> struct AxisAngle;
template<typename T> struct Quaternion;
template<typename T> struct EulerXYZ : public EulerBase<T> { template<typename T> struct EulerXYZ : public EulerBase<T> {
using AngleT = AngleRadian<T>; using AngleT = AngleRadian<T>;

View File

@ -20,9 +20,6 @@ namespace blender::math {
namespace detail { namespace detail {
/* Forward declaration for casting operators. */
template<typename T> struct EulerXYZ;
/** /**
* A `blender::math::Quaternion<T>` represents either an orientation or a rotation. * A `blender::math::Quaternion<T>` represents either an orientation or a rotation.
* *