Bitbybit Docs
    Preparing search index...

    Interface CornerResult (Models.OCCT)

    One corner found by a point query: where it is, how far it was from the point you asked about, how many edges and faces meet there, how it was classified, what was done to it, and whether that succeeded. Read classification and applied together - a corner can be found and still be left untouched if its kind does not support the operation.

    interface CornerResult {
        index: number;
        point: Point3;
        snapDistance: number;
        valence: number;
        incidentFaces: number;
        classification: CornerClassification;
        action: string;
        taperFactor: number;
        applied: boolean;
        message: string;
    }
    Index

    Properties

    index: number
    point: Point3
    snapDistance: number
    valence: number
    incidentFaces: number
    classification: CornerClassification
    action: string
    taperFactor: number
    applied: boolean
    message: string