Axiom.Math.Collections.QuaternionCollection.Clear C# (CSharp) Method

Clear() public method

Removes all elements from the QuaternionCollection.
public Clear ( ) : void
return void
        public virtual void Clear()
        {
            ++m_version;
            m_array = new Quaternion[ DEFAULT_CAPACITY ];
            m_count = 0;
        }

Usage Example

Beispiel #1
0
 public override void Clear()
 {
     lock (this.m_root)
         m_collection.Clear();
 }