Normalized MLINE segment data.

interface AcDbMLineSegment {
    direction: AcGeVector3d;
    elements: AcDbMLineElement[];
    miterDirection: AcGeVector3d;
    position: AcGePoint3d;
}

Properties

direction: AcGeVector3d

Segment direction vector along the reference path.

elements: AcDbMLineElement[]

Resolved per-element parameter data for the segment.

miterDirection: AcGeVector3d

Miter direction used to offset each style element.

position: AcGePoint3d

Segment vertex in world coordinates.