Edit

Share via


Vector.AsVector4Unsafe Method

Definition

Overloads

AsVector4Unsafe(Vector2)

Reinterprets a Vector2 to a new Vector4 with the new elements undefined.

AsVector4Unsafe(Vector3)

Converts a Vector3 to a new Vector4 with the new elements undefined.

AsVector4Unsafe(Vector2)

Reinterprets a Vector2 to a new Vector4 with the new elements undefined.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Numerics::Vector4 AsVector4Unsafe(System::Numerics::Vector2 value);
public static System.Numerics.Vector4 AsVector4Unsafe (this System.Numerics.Vector2 value);
static member AsVector4Unsafe : System.Numerics.Vector2 -> System.Numerics.Vector4
<Extension()>
Public Function AsVector4Unsafe (value As Vector2) As Vector4

Parameters

value
Vector2

The vector to reinterpret.

Returns

value reinterpreted to a new Vector4 with the new elements undefined.

Applies to

AsVector4Unsafe(Vector3)

Converts a Vector3 to a new Vector4 with the new elements undefined.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Numerics::Vector4 AsVector4Unsafe(System::Numerics::Vector3 value);
public static System.Numerics.Vector4 AsVector4Unsafe (this System.Numerics.Vector3 value);
static member AsVector4Unsafe : System.Numerics.Vector3 -> System.Numerics.Vector4
<Extension()>
Public Function AsVector4Unsafe (value As Vector3) As Vector4

Parameters

value
Vector3

The vector to convert.

Returns

value converted to a new Vector4 with the new elements undefined.

Applies to