gcode-preview - v3.0.0-alpha.5
    Preparing search index...

    Interface ArcMove

    Describes a G2/G3 arc move relative to a known start position

    interface ArcMove {
        cw: boolean;
        i?: number;
        j?: number;
        r?: number;
        x?: number;
        y?: number;
        z?: number;
    }
    Index

    Properties

    Properties

    cw: boolean

    true for clockwise arcs (G2), false for counter-clockwise arcs (G3)

    i?: number

    X offset from the start point to the arc center (I/J mode)

    j?: number

    Y offset from the start point to the arc center (I/J mode)

    r?: number

    Arc radius (R mode); takes precedence over i/j when non-zero

    x?: number

    Absolute target coordinates; an omitted axis keeps its start value

    y?: number
    z?: number