Adding code x3

This commit is contained in:
2023-12-27 21:42:38 -06:00
parent f90f1cf40b
commit 24cc2e79bc
8 changed files with 152 additions and 35 deletions

View File

@@ -9,7 +9,13 @@ namespace LinearAlgebra
/// Transitional datatype, not useful for internal representation of rotation
/// But has uses for conversion and manipulation.
class AxisAngle {
Vector3 Axis;
float Angle;
Vector3 axis;
float angle;
public:
AxisAngle();
AxisAngle(Vector3 axis, float angle);
};
}