34 #ifndef OPEN_WALKER_CORE_VECTOR3_H 35 #define OPEN_WALKER_CORE_VECTOR3_H 48 template <
typename _Scalar>
53 typedef _Scalar Scalar;
54 typedef Eigen::Matrix<_Scalar,3,1> Derived;
73 Vector3(
const Scalar& x,
const Scalar& y,
const Scalar& z) :
85 template <
typename OtherDerived>
86 Vector3(
const Eigen::EigenBase<OtherDerived>& other) :
95 using Base::operator=;
101 #endif // OPEN_WALKER_CORE_VECTOR3_H The Vector3Ref class.
Definition: vector3_ref.h:53
Definition: angular_acceleration.h:39
Vector3()
Default Constructor.
Definition: vector3.h:64
The Vector3 class.
Definition: vector3.h:49
Vector3(const Eigen::EigenBase< OtherDerived > &other)
Copy constructor.
Definition: vector3.h:86
Vector3(const Scalar &x, const Scalar &y, const Scalar &z)
Assignment from Scalar values.
Definition: vector3.h:73