Axiom.Math.Collections.Vector3List.Clear C# (CSharp) Méthode

Clear() public méthode

Removes all elements from the Vector3List.
public Clear ( ) : void
Résultat 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();
 }