Aracılığıyla paylaş


Vector.WithElement Yöntem

Tanım

Aşırı Yüklemeler

WithElement(Vector2, Int32, Single)
WithElement(Vector3, Int32, Single)
WithElement(Vector4, Int32, Single)
WithElement<T>(Vector<T>, Int32, T)

Belirtilen dizindeki öğesi belirtilen değere, kalan öğeler ise belirtilen vektördekiyle aynı değere ayarlanmış şekilde yeni Vector<T> bir oluşturur.

WithElement(Vector2, Int32, Single)

Kaynak:
Vector2.Extensions.cs
public:
[System::Runtime::CompilerServices::Extension]
 static System::Numerics::Vector2 WithElement(System::Numerics::Vector2 vector, int index, float value);
public static System.Numerics.Vector2 WithElement(this System.Numerics.Vector2 vector, int index, float value);
static member WithElement : System.Numerics.Vector2 * int * single -> System.Numerics.Vector2
<Extension()>
Public Function WithElement (vector As Vector2, index As Integer, value As Single) As Vector2

Parametreler

vector
Vector2
index
Int32
value
Single

Döndürülenler

Şunlara uygulanır

WithElement(Vector3, Int32, Single)

Kaynak:
Vector3.Extensions.cs
public:
[System::Runtime::CompilerServices::Extension]
 static System::Numerics::Vector3 WithElement(System::Numerics::Vector3 vector, int index, float value);
public static System.Numerics.Vector3 WithElement(this System.Numerics.Vector3 vector, int index, float value);
static member WithElement : System.Numerics.Vector3 * int * single -> System.Numerics.Vector3
<Extension()>
Public Function WithElement (vector As Vector3, index As Integer, value As Single) As Vector3

Parametreler

vector
Vector3
index
Int32
value
Single

Döndürülenler

Şunlara uygulanır

WithElement(Vector4, Int32, Single)

Kaynak:
Vector4.Extensions.cs
public:
[System::Runtime::CompilerServices::Extension]
 static System::Numerics::Vector4 WithElement(System::Numerics::Vector4 vector, int index, float value);
public static System.Numerics.Vector4 WithElement(this System.Numerics.Vector4 vector, int index, float value);
static member WithElement : System.Numerics.Vector4 * int * single -> System.Numerics.Vector4
<Extension()>
Public Function WithElement (vector As Vector4, index As Integer, value As Single) As Vector4

Parametreler

vector
Vector4
index
Int32
value
Single

Döndürülenler

Şunlara uygulanır

WithElement<T>(Vector<T>, Int32, T)

Kaynak:
Vector.cs
Kaynak:
Vector.cs
Kaynak:
Vector.cs

Belirtilen dizindeki öğesi belirtilen değere, kalan öğeler ise belirtilen vektördekiyle aynı değere ayarlanmış şekilde yeni Vector<T> bir oluşturur.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Numerics::Vector<T> WithElement(System::Numerics::Vector<T> vector, int index, T value);
public static System.Numerics.Vector<T> WithElement<T>(this System.Numerics.Vector<T> vector, int index, T value);
static member WithElement : System.Numerics.Vector<'T> * int * 'T -> System.Numerics.Vector<'T>
<Extension()>
Public Function WithElement(Of T) (vector As Vector(Of T), index As Integer, value As T) As Vector(Of T)

Tür Parametreleri

T

Vektördeki öğelerin türü.

Parametreler

vector
Vector<T>

Kalan öğeleri almak için vektör.

index
Int32

Ayarlanacağı öğenin dizini.

value
T

Öğesinin ayarlanacağı değer.

Döndürülenler

Vector<T> öğesi değerine index ayarlanmış value ve kalan öğeler de içindekiyle vectoraynı değere ayarlanmış olan A

Özel durumlar

index sıfırdan küçük veya öğe sayısından büyük.

(T) türü vector desteklenmez.

Şunlara uygulanır