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

Vector3List() public method

Initializes a new instance of the Vector3List class that has the specified initial capacity.
public Vector3List ( int capacity ) : System
capacity int /// The number of elements that the new Vector3List is initially capable of storing. ///
return System
        public Vector3List( int capacity )
        {
            m_array = new Vector3[ capacity ];
        }

Same methods

Vector3List::Vector3List ( ) : System
Vector3List::Vector3List ( Tag t ) : System
Vector3List::Vector3List ( Vector3 a ) : System
Vector3List::Vector3List ( Vector3List c ) : System