1
0
forked from josh/j3ml
Files
j3ml-fork/include/J3ML/LinearAlgebra/AxisAngle.h
2023-12-26 21:29:05 -06:00

15 lines
323 B
C++

#pragma once
#include <J3ML/LinearAlgebra.h>
#include <J3ML/LinearAlgebra/Vector3.h>
namespace LinearAlgebra
{
/// Transitional datatype, not useful for internal representation of rotation
/// But has uses for conversion and manipulation.
class AxisAngle {
Vector3 Axis;
float Angle;
};
}