Table of Contents

Class ToolOffsetRow

Namespace
Hi.NcParsers.Dependencys.Generic
Assembly
HiMech.dll

Single row of a ToolOffsetTable. Stores geometry (ideal) and wear components for height and radius. Matches Fanuc Memory C layout where H and D share the same row.

public class ToolOffsetRow
Inheritance
ToolOffsetRow
Inherited Members
Extension Methods

Constructors

ToolOffsetRow()

public ToolOffsetRow()

ToolOffsetRow(double, double, double, double)

public ToolOffsetRow(double idealHeight_mm, double axialWear_mm, double idealRadius_mm, double radialWear_mm)

Parameters

idealHeight_mm double
axialWear_mm double
idealRadius_mm double
radialWear_mm double

Properties

AxialWear_mm

public double AxialWear_mm { get; set; }

Property Value

double

FullHeight_mm

Effective height: geometry minus wear.

public double FullHeight_mm { get; }

Property Value

double

FullRadius_mm

Effective radius: geometry minus wear.

public double FullRadius_mm { get; }

Property Value

double

IdealHeight_mm

public double IdealHeight_mm { get; set; }

Property Value

double

IdealRadius_mm

public double IdealRadius_mm { get; set; }

Property Value

double

RadialWear_mm

public double RadialWear_mm { get; set; }

Property Value

double