Vector3DCollection コンストラクター

定義

Vector3DCollection クラスの新しいインスタンスを初期化します。

オーバーロード

Vector3DCollection()

Vector3DCollection クラスの新しいインスタンスを初期化します。

Vector3DCollection(IEnumerable<Vector3D>)

指定したコレクションを使用して、Vector3DCollection クラスの新しいインスタンスを初期化します。

Vector3DCollection(Int32)

指定された容量を使用して Vector3DCollection クラスの新しいインスタンスを初期化します。

Vector3DCollection()

Vector3DCollection クラスの新しいインスタンスを初期化します。

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

適用対象

Vector3DCollection(IEnumerable<Vector3D>)

指定したコレクションを使用して、Vector3DCollection クラスの新しいインスタンスを初期化します。

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

パラメーター

collection
IEnumerable<Vector3D>

Vector3DCollection をインスタンス化するために使用するコレクション。

適用対象

Vector3DCollection(Int32)

指定された容量を使用して Vector3DCollection クラスの新しいインスタンスを初期化します。

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

パラメーター

capacity
Int32

コレクションの容量を指定する整数。

適用対象