Partager via


Fonction XMUSHORTN4::XMUSHORTN4(constfloat*) (directxpackedvector.h)

Initialise une nouvelle instance de XMUSHORTN4 à partir d’un argument de tableau à quatre élémentsfloat.

Ce constructeur initialise une nouvelle instance de XMUSHORTN4 à partir d’un argument de tableau de quatre élémentsfloat.

Note Ce constructeur est disponible uniquement sous C++.

Syntaxe

void XMUSHORTN4(
  const float *pArray
) noexcept;

Paramètres

pArray

Tableau à virgule flottante à quatre éléments contenant les valeurs utilisées pour initialiser les quatre composants d’un nouveau instance de XMUSHORTN4.

Valeur de retour

None

Notes

Les éléments tableaux sont mappés aux composants vectoriels d’une nouvelle instance de XMUSHORTN4 comme suit :

Composant Vector Élément Array Plage Description
x pArray[0] 0.0, 1.0 Pendant l’instanciation, pArray[0] est serré entre 0 et 1, multiplié par 65535.0f et affecté à x.
y pArray[1] 0.0, 1.0 Pendant l’instanciation, pArray[1] est serré entre 0 et 1, multiplié par 65535.0f, puis affecté à y.
z pArray[2] 0.0, 1.0 Pendant l’instanciation, pArray[2] est serré entre 0 et 1, multiplié par 65535.0f, puis affecté à z.
w pArray[3] 0.0, 1.0 Pendant l’instanciation, pArray[3] est serré entre 0 et 1, multiplié par 65535.0f, puis affecté à w.

Le pseudocode suivant illustre le fonctionnement de ce constructeur :

XMUSHORTN4 instance;
_x1=min( max( pArray[0], 0.0 ), 1.0 );
_y1=min( max( pArray[1], 0.0 ), 1.0 );
_z1=min( max( pArray[2], 0.0 ), 1.0 );
_w1=min( max( pArray[3], 0.0 ), 1.0 )
_x1 = round( _x1 * 65535.0f);
_y1 = round( _y1 * 65535.0f);
_z1 = round( _z1 * 65535.0f);
_w1 = round( _w1 * 65535.0f);
instance._x = _x1;
instance._y = _y1;
instance._z = _z1;
instance._w = _w1;

Spécifications

   
Plateforme cible Windows
En-tête directxpackedvector.h

Voir aussi

XMUSHORTN4

Constructeurs XMUSHORTN4