incremental — Incremental blockProgram & flow

Interpret coordinates inside the block as relative.

incremental { … }

Equivalents: Fanuc G91 · Siemens G91

Within the braces, axis values are **deltas** from the current position; absolute mode resumes after the block. Scoped (block-structured) rather than modal, so it can't leak.

step over by +5 twice
g0 x10 y10
incremental {
  g1 x5 f200
  g1 x5
}

See also: g1

← all commands