interface ArcSegment {
    ccw: boolean;
    center: Point2;
    from: Point2;
    to: Point2;
}

Properties

Properties

ccw: boolean
center: Point2
from: Point2
to: Point2