Browse Source

doc: updated changelog and credits.

pull/234/head
Vladimír Vondruš 6 years ago
parent
commit
55d7a1e6e0
  1. 6
      doc/changelog.dox
  2. 3
      doc/credits.dox
  3. 1
      src/Magnum/DebugTools/ColorMap.cpp
  4. 1
      src/Magnum/DebugTools/ColorMap.h
  5. 2
      src/Magnum/Math/Intersection.h
  6. 1
      src/Magnum/Math/Test/IntersectionTest.cpp

6
doc/changelog.dox

@ -40,6 +40,11 @@ See also:
@subsection changelog-latest-new New features @subsection changelog-latest-new New features
@subsubsection changelog-latest-new-debugtools DebugTools library
- Added @ref DebugTools::ColorMap::coolWarmSmooth() and
@ref DebugTools::ColorMap::coolWarmBent() (see [mosra/magnum#473](https://github.com/mosra/magnum/pull/473))
@subsubsection changelog-latest-new-gl GL library @subsubsection changelog-latest-new-gl GL library
- Implemented @gl_extension{EXT,texture_norm16} and - Implemented @gl_extension{EXT,texture_norm16} and
@ -77,6 +82,7 @@ See also:
and @ref Math::Matrix4::from(const Matrix3x3<T>&, const Vector3<T>&) to and @ref Math::Matrix4::from(const Matrix3x3<T>&, const Vector3<T>&) to
create a transformation from a rotation and translation part (see create a transformation from a rotation and translation part (see
[mosra/magnum#471](https://github.com/mosra/magnum/pull/471)) [mosra/magnum#471](https://github.com/mosra/magnum/pull/471))
- Added @ref Math::Intersection::rayRange() (see [mosra/magnum#484](https://github.com/mosra/magnum/pull/484))
@subsubsection changelog-latest-new-meshtools MeshTools library @subsubsection changelog-latest-new-meshtools MeshTools library

3
doc/credits.dox

@ -143,7 +143,8 @@ Are the below lists missing your name or something's wrong?
bootstrap project bootstrap project
- **Jan Dupal** ([\@JanDupal](https://github.com/JanDupal)) --- Homebrew - **Jan Dupal** ([\@JanDupal](https://github.com/JanDupal)) --- Homebrew
package for `magnum-bindings` package for `magnum-bindings`
- **[\@Janos95](https://github.com/Janos95)** -- @ref Math additions - **[\@Janos95](https://github.com/Janos95)** -- @ref Math and
@ref DebugTools::ColorMap additions
- **Jonathan Hale** ([\@Squareys](https://github.com/Squareys)) --- - **Jonathan Hale** ([\@Squareys](https://github.com/Squareys)) ---
@ref Audio and @ref Trade library enhancements, @ref Audio and @ref Trade library enhancements,
@ref Platform::GlfwApplication and @ref Platform::EmscriptenApplication @ref Platform::GlfwApplication and @ref Platform::EmscriptenApplication

1
src/Magnum/DebugTools/ColorMap.cpp

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

1
src/Magnum/DebugTools/ColorMap.h

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

2
src/Magnum/Math/Intersection.h

@ -6,6 +6,7 @@
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
2020 Vladimír Vondruš <mosra@centrum.cz> 2020 Vladimír Vondruš <mosra@centrum.cz>
Copyright © 2016, 2018 Jonathan Hale <squareys@googlemail.com> Copyright © 2016, 2018 Jonathan Hale <squareys@googlemail.com>
Copyright © 2020 janos <janos.meny@googlemail.com>
Permission is hereby granted, free of charge, to any person obtaining a Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"), copy of this software and associated documentation files (the "Software"),
@ -177,6 +178,7 @@ template<class T> bool rangeFrustum(const Range3D<T>& range, const Frustum<T>& f
@param range Range @param range Range
@return @cpp true @ce if the the ray intersects the range, @cpp false @ce @return @cpp true @ce if the the ray intersects the range, @cpp false @ce
otherwise otherwise
@m_since_latest
Note that you need to pass the inverse ray direction and not the ray direction. Note that you need to pass the inverse ray direction and not the ray direction.
The purpose for this is to reduce the number of times you have to compute The purpose for this is to reduce the number of times you have to compute

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

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

Loading…
Cancel
Save