FMX.ASE.Model.TAseMesh

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TAseMesh = record
    FVertexSource: TGEVertexSource;
    FTriangleMesh: TGETriangleMeshID;
    FFaceMaterials : TIntegerDynArray;
    FSubMeshes: array of TGEMesh;
  end;

C++

struct DECLSPEC_DRECORD TAseMesh
{
private:
    typedef System::DynamicArray<Fmx::Import::TGEMesh*> _TAseMesh__1;
public:
    Fmx::Import::TGEVertexSource* FVertexSource;
    Fmx::Import::TGETriangleMeshID FTriangleMesh;
    System::TIntegerDynArray FFaceMaterials;
    _TAseMesh__1 FSubMeshes;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
FMX.ASE.Model.pas
FMX.ASE.Model.hpp
FMX.ASE.Model FMX.ASE.Model

Description

TAseMesh defines a mesh used to describe the shape of an imported ASE model.

Parameter Meaning

FVertexSource

The list of vertices and their properties.

FTriangleMesh

The array of triangles that compose the mesh.

FFaceMaterials

The indexes of materials for each face of the mesh.

FSubMeshes

The submeshes of the current mesh.

See Also