FMX.DAE.Model.TDAEVertexSource
Delphi
TDAEVertexSource = record
Id: string;
Data: TSingleDynArray;
Stride: Integer;
end;
C++
struct DECLSPEC_DRECORD TDAEVertexSource
{
public:
System::UnicodeString Id;
System::TSingleDynArray Data;
int Stride;
};
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
record struct |
public | FMX.DAE.Model.pas FMX.DAE.Model.hpp |
FMX.DAE.Model | FMX.DAE.Model |
Description
TDAEVertexSource defines a source of vertex attributes for DAE models.
ID keeps the identifier of the current vertices' source.
Data keeps the vertex source as a dynamic array. Data keeps the values of one of the vertex's attributes (positions, normal or textures).
Stride specifies the leap between two sets of dates in Data, which form the coordinates of the vertex's attributes.
The type of the stored source is identified using TSourceSemantics.