Browse Source

Updated changelog and credits.

pull/483/head
Vladimír Vondruš 6 years ago
parent
commit
095408791f
  1. 6
      doc/changelog.dox
  2. 5
      doc/credits.dox
  3. 2
      src/Magnum/Math/DualComplex.h
  4. 2
      src/Magnum/Math/DualQuaternion.h
  5. 1
      src/Magnum/Math/Test/DualComplexTest.cpp
  6. 1
      src/Magnum/Math/Test/DualQuaternionTest.cpp

6
doc/changelog.dox

@ -71,6 +71,12 @@ See also:
- Added @ref Math::fmod() (see [mosra/magnum#454](https://github.com/mosra/magnum/pull/454))
- Added @ref Math::binomialCoefficient() (see [mosra/magnum#461](https://github.com/mosra/magnum/pull/461))
- Added @ref Math::popcount()
- New @ref Math::DualComplex::from(const Complex<T>&, const Vector2<T>&) and
@ref Math::DualQuaternion::from(const Quaternion<T>&, const Vector3<T>&)
functions mirroring @ref Math::Matrix3::from(const Matrix2x2<T>&, const Vector2<T>&)
and @ref Math::Matrix4::from(const Matrix3x3<T>&, const Vector3<T>&) to
create a transformation from a rotation and translation part (see
[mosra/magnum#471](https://github.com/mosra/magnum/pull/471))
@subsubsection changelog-latest-new-meshtools MeshTools library

5
doc/credits.dox

@ -147,8 +147,9 @@ Are the below lists missing your name or something's wrong?
- **Jonathan Hale** ([\@Squareys](https://github.com/Squareys)) ---
@ref Audio and @ref Trade library enhancements,
@ref Platform::GlfwApplication and @ref Platform::EmscriptenApplication
implementation, frustum and cone culling, bug reports, Windows build
improvements, documentation improvements and tons of other stuff
implementation, frustum and cone culling and other @ref Math additions, bug
reports, Windows build improvements, documentation improvements and tons of
other stuff
- **Joel Clay** ([\@jclay](https://github.com/jclay)) --- Vcpkg packages
- **Konstantinos Chatzilygeroudis** ([\@costashatz](https://github.com/costashatz))
--- Debian package, improvements to @ref Platform::GlfwApplication and

2
src/Magnum/Math/DualComplex.h

@ -5,6 +5,7 @@
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
2020 Vladimír Vondruš <mosra@centrum.cz>
Copyright © 2020 Jonathan Hale <squareys@googlemail.com>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
@ -108,6 +109,7 @@ template<class T> class DualComplex: public Dual<Complex<T>> {
/**
* @brief Create dual complext from rotation complex and translation vector
* @m_since_latest
*
* @f[
* \hat c = r + \epsilon (v_x + iv_y)

2
src/Magnum/Math/DualQuaternion.h

@ -5,6 +5,7 @@
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
2020 Vladimír Vondruš <mosra@centrum.cz>
Copyright © 2020 Jonathan Hale <squareys@googlemail.com>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
@ -248,6 +249,7 @@ template<class T> class DualQuaternion: public Dual<Quaternion<T>> {
/**
* @brief Create dual quaternion from rotation quaternion and translation vector
* @m_since_latest
*
* @f[
* \hat q = r + \epsilon [\frac{\boldsymbol t}{2}, 0] r

1
src/Magnum/Math/Test/DualComplexTest.cpp

@ -3,6 +3,7 @@
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
2020 Vladimír Vondruš <mosra@centrum.cz>
Copyright © 2020 Jonathan Hale <squareys@googlemail.com>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

1
src/Magnum/Math/Test/DualQuaternionTest.cpp

@ -3,6 +3,7 @@
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
2020 Vladimír Vondruš <mosra@centrum.cz>
Copyright © 2020 Jonathan Hale <squareys@googlemail.com>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),

Loading…
Cancel
Save