FMX.Types3D.TMeshVertex
Delphi
  TMeshVertex = packed record
    x, y, z: single;
    nx, ny, nz: single;
    tu, tv: single;
  end;
C++
struct DECLSPEC_DRECORD TMeshVertex
{
public:
    float x;
    float y;
    float z;
    float nx;
    float ny;
    float nz;
    float tu;
    float tv;
};
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| record struct | public | FMX.Types3D.pas FMX.Types3D.hpp | FMX.Types3D | FMX.Types3D | 
Description
Defines a mesh vertex.