Browse Source

singles: update for 2019.10.

pull/388/head
Vladimír Vondruš 7 years ago
parent
commit
deb25cd28f
  1. 10
      src/singles/MagnumMath.hpp
  2. 4
      src/singles/base.h

10
src/singles/MagnumMath.hpp

@ -15,6 +15,16 @@
- GitHub project page https://github.com/mosra/magnum
- GitHub Singles repository https://github.com/mosra/magnum-singles
v2019.10-0-g8412e8f99 (2019-10-24)
- New IsScalar, IsVector, IsIntegral, IsFloatingPoint type traits,
correct handling of Deg and Rad types in all APIs
- Guaranteed NaN handling semantic in min()/max()/minmax() APIs
- Using a GCC compiler builtin in sincos()
- swizzle() is replaced with gather() and scatter()
- Added Matrix::{cofactor,comatrix,adjugate}(), Matrix4::normalMatrix()
- New Matrix4::perspectiveProjection() overload taking corner positions
- Handling also Eigen::Ref types; EigenIntegration::eigenCast() is now
just EigenIntegration::cast()
v2019.01-241-g93686746a (2019-04-03)
- Initial release

4
src/singles/base.h

@ -48,7 +48,7 @@
/* Make it possible to include Assert.h multiple times */
#pragma ACME disable Corrade_Utility_Assert_h
#pragma ACME revision corrade/src echo "$(git describe --match 'v*') ($(date -d @$(git log -1 --format=%at) +%Y-%m-%d))"
#pragma ACME revision magnum/src echo "$(git describe --match 'v*') ($(date -d @$(git log -1 --format=%at) +%Y-%m-%d))"
#pragma ACME revision corrade/src echo "$(git describe --long --match 'v*') ($(date -d @$(git log -1 --format=%at) +%Y-%m-%d))"
#pragma ACME revision magnum/src echo "$(git describe --long --match 'v*') ($(date -d @$(git log -1 --format=%at) +%Y-%m-%d))"
#pragma ACME stats loc wc -l
#pragma ACME stats preprocessed g++ -std=c++11 -P -E -x c++ - | wc -l

Loading…
Cancel
Save