AddRange() public method

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