nuclear@10: /* nuclear@10: libvmath - a vector math library nuclear@10: Copyright (C) 2004-2015 John Tsiombikas nuclear@10: nuclear@10: This program is free software: you can redistribute it and/or modify nuclear@10: it under the terms of the GNU Lesser General Public License as published nuclear@10: by the Free Software Foundation, either version 3 of the License, or nuclear@10: (at your option) any later version. nuclear@10: nuclear@10: This program is distributed in the hope that it will be useful, nuclear@10: but WITHOUT ANY WARRANTY; without even the implied warranty of nuclear@10: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the nuclear@10: GNU Lesser General Public License for more details. nuclear@10: nuclear@10: You should have received a copy of the GNU Lesser General Public License nuclear@10: along with this program. If not, see . nuclear@10: */ nuclear@10: nuclear@10: #ifndef VMATH_BASIS_H_ nuclear@10: #define VMATH_BASIS_H_ nuclear@10: nuclear@10: #include "vector.h" nuclear@10: #include "matrix.h" nuclear@10: nuclear@10: enum { nuclear@10: LEFT_HANDED, nuclear@10: RIGHT_HANDED nuclear@10: }; nuclear@10: nuclear@10: #ifdef __cplusplus nuclear@10: extern "C" { nuclear@10: #endif /* __cplusplus */ nuclear@10: nuclear@10: void basis_matrix(mat4_t res, vec3_t i, vec3_t j, vec3_t k); nuclear@10: void basis_matrix_dir(mat4_t res, vec3_t dir); nuclear@10: nuclear@10: #ifdef __cplusplus nuclear@10: } /* extern "C" */ nuclear@10: nuclear@10: class Basis { nuclear@10: public: nuclear@10: Vector3 i, j, k; nuclear@10: nuclear@10: Basis(); nuclear@10: Basis(const Vector3 &i, const Vector3 &j, const Vector3 &k); nuclear@10: Basis(const Vector3 &dir, bool left_handed = true); nuclear@10: nuclear@10: void rotate(scalar_t x, scalar_t y, scalar_t z); nuclear@10: void rotate(const Vector3 &axis, scalar_t angle); nuclear@10: void rotate(const Matrix4x4 &mat); nuclear@10: void rotate(const Quaternion &quat); nuclear@10: nuclear@10: Matrix3x3 create_rotation_matrix() const; nuclear@10: }; nuclear@10: #endif /* __cplusplus */ nuclear@10: nuclear@10: #endif /* VMATH_BASIS_H_ */