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

Clear() public method

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

Usage Example

 public override void Clear()
 {
     lock (this.m_root)
         m_collection.Clear();
 }