Table of Contents

Class LocalCoordinateOffset

Namespace
Hi.NcParsers.Keywords
Assembly
HiMech.dll

Local coordinate offset state (G52) written by IsoLocalCoordinateOffsetSyntax. Property names are used as JSON keys via nameof.

ISO: G52 X Y Z (local coordinate system shift, additive to G54 series). Cancelled by G52 X0 Y0 Z0 or M30 (program end). Siemens equivalent: TRANS / ATRANS (handled by separate syntax).

public class LocalCoordinateOffset
Inheritance
LocalCoordinateOffset
Inherited Members
Extension Methods

Examples

"LocalCoordinateOffset": {
  "Offset_X": 10.0,
  "Offset_Y": 20.0,
  "Offset_Z": 0.0
}

Properties

Offset_X

X offset in mm.

public double Offset_X { get; set; }

Property Value

double

Offset_Y

Y offset in mm.

public double Offset_Y { get; set; }

Property Value

double

Offset_Z

Z offset in mm.

public double Offset_Z { get; set; }

Property Value

double