Поделиться через


Vector.StoreAligned Метод

Определение

Перегрузки

StoreAligned(Vector4, Single*)
StoreAligned(Vector3, Single*)
StoreAligned(Vector2, Single*)
StoreAligned<T>(Vector<T>, T*)

Сохраняет вектор в заданном выровненном месте назначения.

StoreAligned(Vector4, Single*)

Важно!

Этот API несовместим с CLS.

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreAligned(System::Numerics::Vector4 source, float* destination);
[System.CLSCompliant(false)]
public static void StoreAligned(this System.Numerics.Vector4 source, float* destination);
[<System.CLSCompliant(false)>]
static member StoreAligned : System.Numerics.Vector4 * nativeptr<single> -> unit

Параметры

source
Vector4
destination
Single*
Атрибуты

Применяется к

StoreAligned(Vector3, Single*)

Важно!

Этот API несовместим с CLS.

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreAligned(System::Numerics::Vector3 source, float* destination);
[System.CLSCompliant(false)]
public static void StoreAligned(this System.Numerics.Vector3 source, float* destination);
[<System.CLSCompliant(false)>]
static member StoreAligned : System.Numerics.Vector3 * nativeptr<single> -> unit

Параметры

source
Vector3
destination
Single*
Атрибуты

Применяется к

StoreAligned(Vector2, Single*)

Важно!

Этот API несовместим с CLS.

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreAligned(System::Numerics::Vector2 source, float* destination);
[System.CLSCompliant(false)]
public static void StoreAligned(this System.Numerics.Vector2 source, float* destination);
[<System.CLSCompliant(false)>]
static member StoreAligned : System.Numerics.Vector2 * nativeptr<single> -> unit

Параметры

source
Vector2
destination
Single*
Атрибуты

Применяется к

StoreAligned<T>(Vector<T>, T*)

Исходный код:
Vector.cs
Исходный код:
Vector.cs

Важно!

Этот API несовместим с CLS.

Сохраняет вектор в заданном выровненном месте назначения.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void StoreAligned(System::Numerics::Vector<T> source, T* destination);
[System.CLSCompliant(false)]
public static void StoreAligned<T>(this System.Numerics.Vector<T> source, T* destination);
[<System.CLSCompliant(false)>]
static member StoreAligned : System.Numerics.Vector<'T> * nativeptr<'T> -> unit

Параметры типа

T

Тип элементов в векторе.

Параметры

source
Vector<T>

Вектор, который будет сохранен.

destination
T*

Выровненное место назначения, в котором source будет храниться.

Атрибуты

Исключения

Тип source (T) не поддерживается.

Применяется к