Bug fixes
This commit is contained in:
parent
38ebb34491
commit
1ce7234d71
@ -6,8 +6,8 @@
|
||||
|
||||
template <typename T>
|
||||
AngleAxis<T>::AngleAxis() {
|
||||
angle = Angle();
|
||||
axis = Axis();
|
||||
this->angle = Angle();
|
||||
this->axis = Direction<T>();
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
|
@ -6,7 +6,6 @@
|
||||
#define ANGLEAXIS_H
|
||||
|
||||
#include "Angle.h"
|
||||
// #include "Axis.h"
|
||||
#include "Direction.h"
|
||||
|
||||
namespace Passer {
|
||||
|
@ -11,8 +11,8 @@
|
||||
|
||||
template <typename T>
|
||||
Direction<T>::Direction() {
|
||||
this->horizontalAngle = AngleOf(0.0f);
|
||||
this->verticalAngle = AngleOf(0.0f);
|
||||
this->horizontalAngle = AngleOf<T>(0.0f);
|
||||
this->verticalAngle = AngleOf<T>(0.0f);
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
|
Loading…
x
Reference in New Issue
Block a user