Add() public method

Adds a Quaternion to the end of the QuaternionCollection.
public Add ( Quaternion item ) : int
item Axiom.Math.Quaternion The to be added to the end of the QuaternionCollection.
return int
Example #1
0
 public override int Add(Quaternion x)
 {
     lock (this.m_root)
         return(m_collection.Add(x));
 }