Home | History | Annotate | Download | only in Imath

Lines Matching refs:Axis

59 //	   1) Are the angles measured relative to a set of fixed axis
118 // repeated axis in the euler angles (e.g. XYX)
164 XZX = 0x0011, // first axis repeated
178 XZXr = 0x2110, // relative first axis repeated
187 // A -> Initial Axis (0==x, 1==y, 2==z)
203 enum Axis { X = 0, Y = 1, Z = 2 };
247 void set(Axis initial,
307 // and it probably doesn't work for repeated axis and
324 Axis initialAxis() const { return _initialAxis; }
329 bool _initialRepeated : 1; // init axis repeated as last
330 bool _parityEven : 1; // "parity of axis permutation"
332 Axis _initialAxis ; // First axis of rotation
334 Axis _initialAxis : 2; // First axis of rotation
787 set( p & 0x2000 ? Z : (p & 0x1000 ? Y : X), // initial axis
794 void Euler<T>::set(typename Euler<T>::Axis axis,
799 _initialAxis = axis;