Point3DCollection Constructors

Definition

Initializes a new instance of the Point3DCollection class.

Overloads

Point3DCollection()

Initializes a new instance of the Point3DCollection class.

Point3DCollection(IEnumerable<Point3D>)

Initializes a new instance of the Point3DCollection class using the specified collection.

Point3DCollection(Int32)

Initializes a new instance of the Point3DCollection class with the specified capacity.

Point3DCollection()

Initializes a new instance of the Point3DCollection class.

public:
 Point3DCollection();
public Point3DCollection ();
Public Sub New ()

Applies to

Point3DCollection(IEnumerable<Point3D>)

Initializes a new instance of the Point3DCollection class using the specified collection.

public:
 Point3DCollection(System::Collections::Generic::IEnumerable<System::Windows::Media::Media3D::Point3D> ^ collection);
public Point3DCollection (System.Collections.Generic.IEnumerable<System.Windows.Media.Media3D.Point3D> collection);
new System.Windows.Media.Media3D.Point3DCollection : seq<System.Windows.Media.Media3D.Point3D> -> System.Windows.Media.Media3D.Point3DCollection
Public Sub New (collection As IEnumerable(Of Point3D))

Parameters

collection
IEnumerable<Point3D>

Collection with which to instantiate the Point3DCollection.

Applies to

Point3DCollection(Int32)

Initializes a new instance of the Point3DCollection class with the specified capacity.

public:
 Point3DCollection(int capacity);
public Point3DCollection (int capacity);
new System.Windows.Media.Media3D.Point3DCollection : int -> System.Windows.Media.Media3D.Point3DCollection
Public Sub New (capacity As Integer)

Parameters

capacity
Int32

Integer that specifies the capacity of the Point3DCollection.

Applies to