solstice-anim

Geometry animation library of the solstice app
git clone git://git.meso-star.com/solstice-anim.git
Log | Files | Refs | README | LICENSE

commit 9dc19d64eb094bc4fc89d745cb96ea569b511624
parent 620f2b2b9b47ba516fd66ebd877abcdc0744ce94
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Thu, 22 Oct 2020 11:33:11 +0200

Merge branch 'release_0.2.3'

Diffstat:
MREADME.md | 5+++++
Mcmake/CMakeLists.txt | 6+++---
Msrc/sanim_node.c | 11-----------
3 files changed, 8 insertions(+), 14 deletions(-)

diff --git a/README.md b/README.md @@ -23,6 +23,11 @@ variable the install directories of its dependencies. ## Release notes +### Version 0.2.3 + +- Remove code that is now part of rsys and upgrade to rsys 0.10. + This prevented building using rsys >= 0.8. + ### Version 0.2.2 - Fix a compilation issue that prevented building tests. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -23,8 +23,8 @@ option(NO_TEST "Do not build tests" OFF) ################################################################################ # Check dependencies ################################################################################ -find_package(RCMake 0.2.3 REQUIRED) -find_package(RSys 0.6 REQUIRED) +find_package(RCMake 0.4 REQUIRED) +find_package(RSys 0.10 REQUIRED) find_package(OpenMP 1.2 REQUIRED) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${RCMAKE_SOURCE_DIR}) @@ -41,7 +41,7 @@ rcmake_append_runtime_dirs(_runtime_dirs RSys) ################################################################################ set(VERSION_MAJOR 0) set(VERSION_MINOR 2) -set(VERSION_PATCH 2) +set(VERSION_PATCH 3) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) set(SANIM_FILES_SRC diff --git a/src/sanim_node.c b/src/sanim_node.c @@ -66,17 +66,6 @@ d34_set_identity(double dst[12]) d3_splat(dst + 9, 0); } -static INLINE double* -d22_rotation(double dst[4], const double angle/* in radian */) -{ - const double c = (double) cos((double) angle); - const double s = (double) sin((double) angle); - ASSERT(dst); - dst[0] = c; dst[1] = s; - dst[2] = -s; dst[3] = c; - return dst; -} - static double* get_Xpivot_transform (const double angle,