58 template<
typename T >
60 const Vec3<T> &firstPoint,
61 const Vec3<T> &secondPoint,
62 const Vec3<T> &thirdPoint
65 template<
typename T >
67 const Matrix44<T> &prevMatrix,
68 const Vec3<T> &prevPoint,
69 const Vec3<T> &curPoint,
74 template<
typename T >
76 const Matrix44<T> &prevMatrix,
77 const Vec3<T> &prevPoint,
78 const Vec3<T> &lastPoint
82 template<
typename T >
92 template<
typename T >
103 return nextFrame( prevMatrix, prevPoint.
xyz(), curPoint.
xyz(), aPrevTangent, aCurTangent );
106 template<
typename T >
Matrix44< T > nextFrame(const Matrix44< T > &prevMatrix, const Vec3< T > &prevPoint, const Vec3< T > &curPoint, Vec3< T > &prevTangent, Vec3< T > &curTangent)
Definition: Matrix.cpp:77
Matrix44< T > lastFrame(const Matrix44< T > &prevMatrix, const Vec3< T > &prevPoint, const Vec3< T > &lastPoint)
Definition: Matrix.cpp:127
Vec3< T > xyz() const
Definition: Vector.h:973
Definition: Matrix44.h:41
Matrix44< T > firstFrame(const Vec3< T > &firstPoint, const Vec3< T > &secondPoint, const Vec3< T > &thirdPoint)
Definition: Matrix.cpp:37