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 Vector3 array.
public Vector3List ( Vector3 a ) : System
a Vector3 The array whose elements are copied to the new list.
return System
        public Vector3List( Vector3[] a )
        {
            m_array = new Vector3[ a.Length ];
            AddRange( a );
        }

Same methods

Vector3List::Vector3List ( ) : System
Vector3List::Vector3List ( Tag t ) : System
Vector3List::Vector3List ( Vector3List c ) : System
Vector3List::Vector3List ( int capacity ) : System