Edit

Share via


Vector2.CreateScalarUnsafe(Single) Method

Definition

Creates a vector with X initialized to the specified value and the remaining elements left uninitialized.

public:
 static System::Numerics::Vector2 CreateScalarUnsafe(float x);
public static System.Numerics.Vector2 CreateScalarUnsafe(float x);
static member CreateScalarUnsafe : single -> System.Numerics.Vector2
Public Shared Function CreateScalarUnsafe (x As Single) As Vector2

Parameters

x
Single

The value to assign to the X field.

Returns

A new Vector2 with X initialized x and the remaining elements left uninitialized.

Applies to