struttura D3DXVECTOR3_16F
Nota
La libreria di utilità D3DX10 è deprecata. È consigliabile usare invece DirectXMath .
Uguale a D3DXVECTOR3, ma usa valori a virgola mobile a 16 bit per x, y e z.
Sintassi
typedef struct D3DXVECTOR3_16F {
FLOAT x;
FLOAT y;
FLOAT z;
} D3DXVECTOR3_16F, *LPD3DXVECTOR3_16F;
Members
Commenti
D3DXVECTOR3_16F dispone delle estensioni C++ seguenti.
estensioni D3DXVECTOR3_16F
typedef struct D3DXVECTOR3_16F
{
#ifdef __cplusplus
public:
D3DXVECTOR3_16F() {};
D3DXVECTOR3_16F( CONST FLOAT * );
D3DXVECTOR3_16F( CONST D3DVECTOR& );
D3DXVECTOR3_16F( CONST D3DXFLOAT16 * );
D3DXVECTOR3_16F( CONST D3DXFLOAT16 &x, CONST D3DXFLOAT16 &y, CONST D3DXFLOAT16 &z );
// casting
operator D3DXFLOAT16* ();
operator CONST D3DXFLOAT16* () const;
// binary operators
BOOL operator == ( CONST D3DXVECTOR3_16F& ) const;
BOOL operator != ( CONST D3DXVECTOR3_16F& ) const;
public:
#endif //__cplusplus
D3DXFLOAT16 x, y, z;
} D3DXVECTOR3_16F, *LPD3DXVECTOR3_16F;
Requisiti
Requisito | Valore |
---|---|
Intestazione |
|
Vedi anche