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

Vector3List() public method

Initializes a new instance of the Vector3List class that contains elements copied from the specified Vector3List.
public Vector3List ( Vector3List c ) : System
c Vector3List The Vector3List whose elements are copied to the new collection.
return System
        public Vector3List( Vector3List c )
        {
            m_array = new Vector3[ c.Count ];
            AddRange( c );
        }

Same methods

Vector3List::Vector3List ( ) : System
Vector3List::Vector3List ( Tag t ) : System
Vector3List::Vector3List ( Vector3 a ) : System
Vector3List::Vector3List ( int capacity ) : System