FMX.DAE.Model.TSourceSemantic

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TSourceSemantic = record

C++

struct DECLSPEC_DRECORD TSourceSemantic
{
public:
    TDAEVertexSource *FSource;
    int FOffset;
};

Properties

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

Description

TSourceSemantic defines a source of vertices for DAE models.

TSourceSemantic specifies the source as a pointer to TDAEVertexSource and the offset in the source, from where to start extracting the polygons that define the model.

FSource keeps the pointer to the TDAEVertexSource.

FOffset keeps the position in FSource where to start extracting the needed data.

The type of the stored source is identified using TSourceSemantics.

See Also