diff --git a/doc/changelog.dox b/doc/changelog.dox index e0700a352..ad340ee20 100644 --- a/doc/changelog.dox +++ b/doc/changelog.dox @@ -199,6 +199,9 @@ See also: @ref Math::slerpShortestPath(const Quaternion&, const Quaternion&, T) now fall back to linear interpolation when the quaternions are close to each other, instead of unconditionally returning the first argument +- Added non-const overloads to @ref Math::Frustum::operator[]() and + @ref Math::Frustum::front() etc. accessors, returning references (see + [mosra/magnum#425](https://github.com/mosra/magnum/pull/425)) @subsubsection changelog-latest-changes-meshtools MeshTools library diff --git a/src/Magnum/Math/Frustum.h b/src/Magnum/Math/Frustum.h index b63bb488d..64f5418d0 100644 --- a/src/Magnum/Math/Frustum.h +++ b/src/Magnum/Math/Frustum.h @@ -5,7 +5,7 @@ Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Vladimír Vondruš - Copyright © 2016 Jonathan Hale + Copyright © 2016, 2020 Jonathan Hale Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/src/Magnum/Math/Test/FrustumTest.cpp b/src/Magnum/Math/Test/FrustumTest.cpp index 89e465f92..2bbe7917e 100644 --- a/src/Magnum/Math/Test/FrustumTest.cpp +++ b/src/Magnum/Math/Test/FrustumTest.cpp @@ -3,7 +3,7 @@ Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Vladimír Vondruš - Copyright © 2016 Jonathan Hale + Copyright © 2016, 2020 Jonathan Hale Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),