Bitbybit Docs
    Preparing search index...

    Interface 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

    Properties

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