IndexOf() 공개 메소드

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.
리턴 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));
 }