Vector3 Structure
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Décrit un vecteur de trois composants à virgule flottante.
En C++, Vector3 est projeté en tant que structure float3.
public value class float3
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
struct float3
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public struct Vector3
var vector3 = {
x : /* Your value */,
y : /* Your value */,
z : /* Your value */
}
Public Structure Vector3
- Héritage
-
Vector3
- Attributs
Configuration requise pour Windows
Famille d’appareils |
Windows 10 (introduit dans 10.0.10240.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduit dans v1.0)
|
Champs
X |
Composant x du vecteur. |
Y |
Composant y du vecteur. |
Z |
Composant z du vecteur. |