Vector.Store Metod
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Överlagringar
| Name | Description |
|---|---|
| Store(Vector4, Single*) |
Lagrar en vektor vid det angivna målet. |
| Store(Vector3, Single*) |
Lagrar en vektor vid det angivna målet. |
| Store(Vector2, Single*) |
Lagrar en vektor vid det angivna målet. |
| Store<T>(Vector<T>, T*) |
Lagrar en vektor vid det angivna målet. |
Store(Vector4, Single*)
- Källa:
- Vector4.Extensions.cs
- Källa:
- Vector4.Extensions.cs
Viktigt!
Detta API uppfyller inte CLS.
Lagrar en vektor vid det angivna målet.
public:
[System::Runtime::CompilerServices::Extension]
static void Store(System::Numerics::Vector4 source, float* destination);
[System.CLSCompliant(false)]
public static void Store(this System.Numerics.Vector4 source, float* destination);
[<System.CLSCompliant(false)>]
static member Store : System.Numerics.Vector4 * nativeptr<single> -> unit
Parametrar
- source
- Vector4
Den vektor som ska lagras.
- destination
- Single*
Målet som source ska lagras på.
- Attribut
Gäller för
Store(Vector3, Single*)
- Källa:
- Vector3.Extensions.cs
- Källa:
- Vector3.Extensions.cs
Viktigt!
Detta API uppfyller inte CLS.
Lagrar en vektor vid det angivna målet.
public:
[System::Runtime::CompilerServices::Extension]
static void Store(System::Numerics::Vector3 source, float* destination);
[System.CLSCompliant(false)]
public static void Store(this System.Numerics.Vector3 source, float* destination);
[<System.CLSCompliant(false)>]
static member Store : System.Numerics.Vector3 * nativeptr<single> -> unit
Parametrar
- source
- Vector3
Den vektor som ska lagras.
- destination
- Single*
Målet som source ska lagras på.
- Attribut
Gäller för
Store(Vector2, Single*)
- Källa:
- Vector2.Extensions.cs
- Källa:
- Vector2.Extensions.cs
Viktigt!
Detta API uppfyller inte CLS.
Lagrar en vektor vid det angivna målet.
public:
[System::Runtime::CompilerServices::Extension]
static void Store(System::Numerics::Vector2 source, float* destination);
[System.CLSCompliant(false)]
public static void Store(this System.Numerics.Vector2 source, float* destination);
[<System.CLSCompliant(false)>]
static member Store : System.Numerics.Vector2 * nativeptr<single> -> unit
Parametrar
- source
- Vector2
Den vektor som ska lagras.
- destination
- Single*
Målet som source ska lagras på.
- Attribut
Gäller för
Store<T>(Vector<T>, T*)
- Källa:
- Vector.cs
- Källa:
- Vector.cs
- Källa:
- Vector.cs
- Källa:
- Vector.cs
Viktigt!
Detta API uppfyller inte CLS.
Lagrar en vektor vid det angivna målet.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void Store(System::Numerics::Vector<T> source, T* destination);
[System.CLSCompliant(false)]
public static void Store<T>(this System.Numerics.Vector<T> source, T* destination);
[<System.CLSCompliant(false)>]
static member Store : System.Numerics.Vector<'T> * nativeptr<'T> -> unit
Typparametrar
- T
Typ av element i vektorn.
Parametrar
- source
- Vector<T>
Den vektor som ska lagras.
- destination
- T*
Målet som source ska lagras på.
- Attribut
Undantag
Typen av source (T) stöds inte.