IndexOf() public method

Returns the zero-based index of the first occurrence of a Quaternion in the QuaternionCollection.
public IndexOf ( Quaternion item ) : int
item Axiom.Math.Quaternion The to locate in the QuaternionCollection.
return int
Example #1
0
 public override int IndexOf(Quaternion x)
 {
     lock (this.m_root)
         return(m_collection.IndexOf(x));
 }
Example #2
0
 public override int IndexOf(Quaternion x)
 {
     return(m_collection.IndexOf(x));
 }