Metadata-Version: 2.1
Name: quatlib
Version: 0.0.1
Summary: A very basic quaternion library for transformation between quaternion, Rotation matrix, Euler angle and many more.
Home-page: 
Author: Subhadeep Paul
Author-email: sp323511@gmail.com
License: MIT
Keywords: quaternion
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
License-File: LICENSE.txt

This is a very basic quaternion library for transformation between quaternion, Rotation matrix, Euler angle and many more. It have the following conversion abilitys,
Axis and angle to quaternion using the function 'axisAngle2quatern(axis, angle)'
Axis and angle to Rotation matrix using the function 'axisAngle2rotMat(axis, angle)'
Euler angle to Rotation matrix using the function 'euler2rotMat(phi, theta, psi)'
Quaternion to euler angle using the function 'quatern2euler(q)'
Quaternion to Rotation matrix using the function 'quatern2rotMat(q)'
Converts a quaternion to its conjugate using the function 'quaternConj(q)'
Calculates the quaternion product of quaternion a and b using the function 'quaternProd(a, b)'
Rotation matrix to Euler angle using the function 'rotMat2euler(R)'
Rotation matrix to quaternion using the function 'rotMat2quatern(R)'

Input & Output Datatypes
Angles:	Radian(float)
Quaternion: array[qw,qx,qy,qz]
Axis: array[x,y,z]
Rotation Matrix: In (3x3) matrix/array form Like,
R11	R12	R13
R21	R22	R23
R31	R32	R33

Change Log
==========

0.0.1 (23/11/2022)
-------------------
- First Release
