Прочетете на английски Редактиране

Споделяне чрез


Vector128.AsVector128 Method

Definition

Overloads

AsVector128(Vector2)

Reinterprets a Vector2 as a new Vector128<T>.

AsVector128(Vector3)

Reinterprets a Vector3 as a new Vector128<T>.

AsVector128(Vector4)

Reinterprets a Vector4 as a new Vector128<T>.

AsVector128<T>(Vector<T>)

Reinterprets a Vector<T> as a new Vector128<T>.

AsVector128(Vector2)

Source:
Vector128.cs
Source:
Vector128.cs
Source:
Vector128.cs

Reinterprets a Vector2 as a new Vector128<T>.

C#
public static System.Runtime.Intrinsics.Vector128<float> AsVector128(this System.Numerics.Vector2 value);

Parameters

value
Vector2

The vector to reinterpret.

Returns

value reinterpreted as a new Vector128<T>.

Applies to

.NET 10 и други версии
Продукт Версии
.NET 5, 6, 7, 8, 9, 10

AsVector128(Vector3)

Source:
Vector128.cs
Source:
Vector128.cs
Source:
Vector128.cs

Reinterprets a Vector3 as a new Vector128<T>.

C#
public static System.Runtime.Intrinsics.Vector128<float> AsVector128(this System.Numerics.Vector3 value);

Parameters

value
Vector3

The vector to reinterpret.

Returns

value reinterpreted as a new Vector128<T>.

Applies to

.NET 10 и други версии
Продукт Версии
.NET 5, 6, 7, 8, 9, 10

AsVector128(Vector4)

Source:
Vector128.cs
Source:
Vector128.cs
Source:
Vector128.cs

Reinterprets a Vector4 as a new Vector128<T>.

C#
public static System.Runtime.Intrinsics.Vector128<float> AsVector128(this System.Numerics.Vector4 value);

Parameters

value
Vector4

The vector to reinterpret.

Returns

value reinterpreted as a new Vector128<T>.

Applies to

.NET 10 и други версии
Продукт Версии
.NET 5, 6, 7, 8, 9, 10

AsVector128<T>(Vector<T>)

Source:
Vector128.cs
Source:
Vector128.cs
Source:
Vector128.cs

Reinterprets a Vector<T> as a new Vector128<T>.

C#
public static System.Runtime.Intrinsics.Vector128<T> AsVector128<T>(this System.Numerics.Vector<T> value);
C#
public static System.Runtime.Intrinsics.Vector128<T> AsVector128<T>(this System.Numerics.Vector<T> value) where T : struct;

Type Parameters

T

The type of the vectors.

Parameters

value
Vector<T>

The vector to reinterpret.

Returns

value reinterpreted as a new Vector128<T>.

Exceptions

The type of value (T) is not supported.

Applies to

.NET 10 и други версии
Продукт Версии
.NET 5, 6, 7, 8, 9, 10