diff --git a/doc/changelog.dox b/doc/changelog.dox index 4e1674e3e..7a5be3d10 100644 --- a/doc/changelog.dox +++ b/doc/changelog.dox @@ -775,6 +775,9 @@ See also: - Fixed a silly mistake where there was no @cpp extern template @ce for a @ref Frustumd debug printer but two declarations for the float version instead (see [mosra/magnum#545](https://github.com/mosra/magnum/issues/545)) +- Fixed the @ref QuadraticBezier2Dd, @ref QuadraticBezier3Dd, + @ref CubicBezier2Dd and @ref CubicBezier3Dd typedefs to be actually + double-precision - Fixed @ref MeshTools::compile() to properly take into account index buffer offsets - Fixed @ref MeshTools::removeDuplicates() to not take into account random diff --git a/src/Magnum/Magnum.h b/src/Magnum/Magnum.h index b9237754d..9603e140e 100644 --- a/src/Magnum/Magnum.h +++ b/src/Magnum/Magnum.h @@ -1196,16 +1196,16 @@ Equivalent to GLSL @glsl dmat4x3 @ce. typedef Math::Matrix4x3 Matrix4x3d; /** @brief Double two-dimensional quadratic Bézier curve */ -typedef Math::QuadraticBezier2D QuadraticBezier2Dd; +typedef Math::QuadraticBezier2D QuadraticBezier2Dd; /** @brief Double three-dimensional quadratic Bézier curve */ -typedef Math::QuadraticBezier3D QuadraticBezier3Dd; +typedef Math::QuadraticBezier3D QuadraticBezier3Dd; /** @brief Double two-dimensional cubic Bézier curve */ -typedef Math::CubicBezier2D CubicBezier2Dd; +typedef Math::CubicBezier2D CubicBezier2Dd; /** @brief Double three-dimensional cubic Bézier curve */ -typedef Math::CubicBezier3D CubicBezier3Dd; +typedef Math::CubicBezier3D CubicBezier3Dd; /** @brief Double scalar cubic Hermite spline point */ typedef Math::CubicHermite1D CubicHermite1Dd;