Remove() public method

Removes the first occurrence of a specific Quaternion from the QuaternionCollection.
/// The specified was not found in the QuaternionCollection. ///
public Remove ( Quaternion item ) : void
item Axiom.Math.Quaternion The to remove from the QuaternionCollection.
return void
Example #1
0
 public override void Remove(Quaternion x)
 {
     lock (this.m_root)
         m_collection.Remove(x);
 }