brepjs API Reference
    Preparing search index...

    Type Alias DXFEntity

    DXFEntity:
        | { end: Point2D; layer?: string; start: Point2D; type: "LINE" }
        | { closed?: boolean; layer?: string; points: Point2D[]; type: "POLYLINE" }

    A single DXF entity (LINE or POLYLINE).

    LINE maps directly to a DXF LINE entity. POLYLINE maps to an LWPOLYLINE with optional closure.