Olvasás angol nyelven Szerkesztés

Megosztás a következőn keresztül:


Vector.WithElement Method

Definition

Overloads

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

Creates a new Vector<T> with the element at the specified index set to the specified value and the remaining elements set to the same value as that in the given vector.

WithElement(Vector3, Int32, Single)

C#
public static System.Numerics.Vector3 WithElement(this System.Numerics.Vector3 vector, int index, float value);

Parameters

vector
Vector3
index
Int32
value
Single

Returns

Applies to

.NET 10
Termék Verziók
.NET 10

WithElement(Vector2, Int32, Single)

C#
public static System.Numerics.Vector2 WithElement(this System.Numerics.Vector2 vector, int index, float value);

Parameters

vector
Vector2
index
Int32
value
Single

Returns

Applies to

.NET 10
Termék Verziók
.NET 10

WithElement(Vector4, Int32, Single)

C#
public static System.Numerics.Vector4 WithElement(this System.Numerics.Vector4 vector, int index, float value);

Parameters

vector
Vector4
index
Int32
value
Single

Returns

Applies to

.NET 10
Termék Verziók
.NET 10

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

Source:
Vector.cs
Source:
Vector.cs

Creates a new Vector<T> with the element at the specified index set to the specified value and the remaining elements set to the same value as that in the given vector.

C#
public static System.Numerics.Vector<T> WithElement<T>(this System.Numerics.Vector<T> vector, int index, T value);

Type Parameters

T

The type of the elements in the vector.

Parameters

vector
Vector<T>

The vector to get the remaining elements from.

index
Int32

The index of the element to set.

value
T

The value to set the element to.

Returns

A Vector<T> with the value of the element at index set to value and the remaining elements set to the same value as that in vector.

Exceptions

index was less than zero or greater than the number of elements.

The type of vector (T) is not supported.

Applies to

.NET 10 és más verziók
Termék Verziók
.NET 8, 9, 10