Vector2 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立新的 Vector2 物件。
多載
Vector2(ReadOnlySpan<Single>) |
從指定的 ReadOnlySpan<T> 建構向量。 範圍必須至少包含兩個元素。 |
Vector2(Single) |
建立新的 Vector2 物件,其兩個元素具有相同的值。 |
Vector2(Single, Single) |
建立一個向量,其元素具有指定的值。 |
Vector2(ReadOnlySpan<Single>)
- 來源:
- Vector2.cs
- 來源:
- Vector2.cs
- 來源:
- Vector2.cs
從指定的 ReadOnlySpan<T> 建構向量。 範圍必須至少包含兩個元素。
public:
Vector2(ReadOnlySpan<float> values);
public Vector2 (ReadOnlySpan<float> values);
new System.Numerics.Vector2 : ReadOnlySpan<single> -> System.Numerics.Vector2
Public Sub New (values As ReadOnlySpan(Of Single))
參數
- values
- ReadOnlySpan<Single>
要指派給向量的元素範圍。
適用於
Vector2(Single)
- 來源:
- Vector2.cs
- 來源:
- Vector2.cs
- 來源:
- Vector2.cs
建立新的 Vector2 物件,其兩個元素具有相同的值。
public:
Vector2(float value);
public Vector2 (float value);
new System.Numerics.Vector2 : single -> System.Numerics.Vector2
Public Sub New (value As Single)
參數
- value
- Single
要指派給這兩個元素的值。
適用於
Vector2(Single, Single)
- 來源:
- Vector2.cs
- 來源:
- Vector2.cs
- 來源:
- Vector2.cs
建立一個向量,其元素具有指定的值。
public:
Vector2(float x, float y);
public Vector2 (float x, float y);
new System.Numerics.Vector2 : single * single -> System.Numerics.Vector2
Public Sub New (x As Single, y As Single)