FMX.DAE.Model.TDAEVertexSource

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TDAEVertexSource = record
    Id: string;
    Data: TSingleDynArray;
    Stride: Integer;
  end;

C++

struct DECLSPEC_DRECORD TDAEVertexSource
{
public:
    System::UnicodeString Id;
#ifndef _WIN64
    System::DynamicArray<float> Data;
#else /* _WIN64 */
    System::TArray__1<float> Data;
#endif /* _WIN64 */
    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.

See Also