is there a java library which can handle quaternions and matrices (quaternion matrix multiplication) with all the standard operations?
(i searched google and here before – but didnt find any adequate solution)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The Jave3D javax.vecmath package has quaternions support (
Quat4D) and quite a lot of the most common operations are supported. It also has matrix operations that can be applied to quaternions.You will probably find that it fits most of your needs – and it should not be too hard to add any additional operations if you need them.