Bitbybit Docs
    Bereite Suchindex vor...

    Schnittstelle CornerByPointReport (Models.OCCT)

    The result of a corner-by-point operation across several points: whether it succeeded, whether the shape was actually modified, and one CornerResult per point. modified is false when every corner was found but none could be treated.

    interface CornerByPointReport {
        ok: boolean;
        modified: boolean;
        results: CornerResult[];
        error?: string;
    }
    Index

    Eigenschaften

    Eigenschaften

    ok: boolean
    modified: boolean
    results: CornerResult[]
    error?: string