Type Alias GlbConversionResult

GlbConversionResult: {
    conversionWarnings: ConversionWarning[];
    glb: Uint8Array;
    meshStats: GlbGeometryStats;
    triangulateUsed: TriangulateOptions;
}

Result from a GLB conversion attempt.

Type declaration

  • conversionWarnings: ConversionWarning[]

    Warnings encountered during conversion.

  • glb: Uint8Array

    GLB output buffer.

  • meshStats: GlbGeometryStats

    Mesh statistics derived from the GLB.

  • triangulateUsed: TriangulateOptions

    Triangulation parameters that produced the final result.