brepjs API Reference
    Preparing search index...

    Type Alias Corner

    A junction between two consecutive curves in a 2D profile.

    type Corner = {
        firstCurve: Curve2D;
        point: Point2D;
        secondCurve: Curve2D;
    }
    Index

    Properties

    firstCurve: Curve2D

    The curve arriving at the corner point.

    point: Point2D

    The shared endpoint where the two curves meet.

    secondCurve: Curve2D

    The curve departing from the corner point.