MVFv3 API Documentation
    Preparing search index...

    This type indicates an object's geometryAnchors property actually contains an array of FlaggedGeometryAnchors instead of a plain GeometryAnchors.

    FlaggedGeometryAnchor - For more information about flagged geometry anchors

    type WithFlaggedGeometryAnchors = {
        geometryAnchors: (
            { floorId: `f_${string}`; geometryId: `g_${string}` } & {
                flags: number[];
            }
        )[];
    }
    Index

    Properties

    Properties

    geometryAnchors: (
        { floorId: `f_${string}`; geometryId: `g_${string}` } & {
            flags: number[];
        }
    )[]

    Type declaration

    • floorId: `f_${string}`

      The floor ID of the geometry to reference.

      FloorId

    • geometryId: `g_${string}`

      The ID of the geometry to reference.

      GeometryId

    • flags: number[]