Lines Matching refs:Vec3
42 template<class T> class Vec3;
63 template<class T> Matrix44<T> firstFrame( const Vec3<T>&, // First point
64 const Vec3<T>&, // Second point
65 const Vec3<T>& ); // Third point
68 const Vec3<T>&, // Previous point
69 const Vec3<T>&, // Current point
70 Vec3<T>&, // Previous tangent
71 Vec3<T>& ); // Current tangent
74 const Vec3<T>&, // Previous point
75 const Vec3<T>& ); // Last point
90 const Vec3<T>& pi, // First point
91 const Vec3<T>& pj, // Second point
92 const Vec3<T>& pk ) // Third point
94 Vec3<T> t = pj - pi; t.normalizeExc();
96 Vec3<T> n = t.cross( pk - pi ); n.normalize();
102 Vec3<T> v( 0.0, 0.0, 0.0 ); v[i] = 1.0;
106 Vec3<T> b = t.cross( n );
129 const Vec3<T>& pi, // Previous point
130 const Vec3<T>& pj, // Current point
131 Vec3<T>& ti, // Previous tangent vector
132 Vec3<T>& tj ) // Current tangent vector
134 Vec3<T> a(0.0, 0.0, 0.0); // Rotation axis.
180 const Vec3<T>& pi, // Previous point
181 const Vec3<T>& pj ) // Last point