moveRelativeX method

Future<CPCLGenerator> moveRelativeX(
  1. dynamic value
)

行式打印相对横向移动 RX

Implementation

Future<CPCLGenerator> moveRelativeX(dynamic value) async {
  await addCommand('! U1 RX $value');
  return this;
}