Vector3 Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new instance of the Vector3 structure.
Overloads
Vector3(ReadOnlySpan<Single>) |
Constructs a vector from the given ReadOnlySpan<T>. The span must contain at least 3 elements. |
Vector3(Single) |
Creates a new Vector3 object whose three elements have the same value. |
Vector3(Vector2, Single) |
Creates a new Vector3 object from the specified Vector2 object and the specified value. |
Vector3(Single, Single, Single) |
Creates a vector whose elements have the specified values. |
Vector3(ReadOnlySpan<Single>)
- Source:
- Vector3.cs
- Source:
- Vector3.cs
- Source:
- Vector3.cs
Constructs a vector from the given ReadOnlySpan<T>. The span must contain at least 3 elements.
public:
Vector3(ReadOnlySpan<float> values);
public Vector3 (ReadOnlySpan<float> values);
new System.Numerics.Vector3 : ReadOnlySpan<single> -> System.Numerics.Vector3
Public Sub New (values As ReadOnlySpan(Of Single))
Parameters
- values
- ReadOnlySpan<Single>
The span of elements to assign to the vector.
Applies to
Vector3(Single)
- Source:
- Vector3.cs
- Source:
- Vector3.cs
- Source:
- Vector3.cs
Creates a new Vector3 object whose three elements have the same value.
public:
Vector3(float value);
public Vector3 (float value);
new System.Numerics.Vector3 : single -> System.Numerics.Vector3
Public Sub New (value As Single)
Parameters
- value
- Single
The value to assign to all three elements.
Applies to
Vector3(Vector2, Single)
- Source:
- Vector3.cs
- Source:
- Vector3.cs
- Source:
- Vector3.cs
public:
Vector3(System::Numerics::Vector2 value, float z);
public Vector3 (System.Numerics.Vector2 value, float z);
new System.Numerics.Vector3 : System.Numerics.Vector2 * single -> System.Numerics.Vector3
Public Sub New (value As Vector2, z As Single)
Parameters
- value
- Vector2
The vector with two elements.
Applies to
Vector3(Single, Single, Single)
- Source:
- Vector3.cs
- Source:
- Vector3.cs
- Source:
- Vector3.cs
Creates a vector whose elements have the specified values.
public:
Vector3(float x, float y, float z);
public Vector3 (float x, float y, float z);
new System.Numerics.Vector3 : single * single * single -> System.Numerics.Vector3
Public Sub New (x As Single, y As Single, z As Single)