Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

quaternion libraries in C/C++ [closed]

Tags:

Any good libraries for quaternion calculations in C/C++ ?

Side note: any good tutorials/examples? I've google it and been to the first few pages but maybe you have have some demos/labs from compsci or math courses you could/would share?

Thanks

like image 919
cbrulak Avatar asked Feb 03 '09 18:02

cbrulak


2 Answers

I'm a fan of the Irrlicht quaternion class. It is zlib licensed and is fairly easy to extract from Irrlicht:

  • Irrlicht Quaternion Documentation
  • quaternion.h
like image 186
Jeff M Avatar answered Oct 04 '22 14:10

Jeff M


You could try with Boost - usually good place to start with. They have a dedicated sublibrary for that.

As for the examples look at the documentation and the unit tests that come along with Boost.

like image 35
Anonymous Avatar answered Oct 04 '22 15:10

Anonymous