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
示例#1
0
 public override int IndexOf(Quaternion x)
 {
     lock (this.m_root)
         return(m_collection.IndexOf(x));
 }
示例#2
0
 public override int IndexOf(Quaternion x)
 {
     return(m_collection.IndexOf(x));
 }