short_vector-Struktur

short_vector bietet Metaprogrammierungsdefinitionen, die für die allgemeine Programmierung von kurzen Vektoren nützlich sind.

Syntax

template<
    typename _Scalar_type,
    int _Size
>
struct short_vector;
template<>
struct short_vector<unsigned int, 1>;
template<>
struct short_vector<unsigned int, 2>;
template<>
struct short_vector<unsigned int, 3>;
template<>
struct short_vector<unsigned int, 4>;
template<>
struct short_vector<int, 1>;
template<>
struct short_vector<int, 2>;
template<>
struct short_vector<int, 3>;
template<>
struct short_vector<int, 4>;
template<>
struct short_vector<float, 1>;
template<>
struct short_vector<float, 2>;
template<>
struct short_vector<float, 3>;
template<>
struct short_vector<float, 4>;
template<>
struct short_vector<unorm, 1>;
template<>
struct short_vector<unorm, 2>;
template<>
struct short_vector<unorm, 3>;
template<>
struct short_vector<unorm, 4>;
template<>
struct short_vector<norm, 1>;
template<>
struct short_vector<norm, 2>;
template<>
struct short_vector<norm, 3>;
template<>
struct short_vector<norm, 4>;
template<>
struct short_vector<double, 1>;
template<>
struct short_vector<double, 2>;
template<>
struct short_vector<double, 3>;
template<>
struct short_vector<double, 4>;

Parameter

_Scalar_type

_Größe

Member

Öffentliche Typedefs

Name Beschreibung
type

Öffentliche Konstruktoren

Name Beschreibung
short_vector::short_vector-Konstruktor

Vererbungshierarchie

short_vector

Anforderungen

Kopfzeile: amp_short_vectors.h

Namespace: Parallelität::graphics

short_vector::short_vector-Konstruktor

short_vector();

Siehe auch

Concurrency::graphics Namespace