Interface ICamApiSimulationObjectTolerance
Per-object tolerance settings (used independently for the workpiece model and the cutting tool). Tolerance can be either absolute (real value in current linear units) or equivalent (relative quality value displayed by the trackbar in the simulation parameters dialog).
Namespace: CAMAPI.Simulator
Assembly: CAMAPI.Simulator.dll
Syntax
[Guid("9D5D45B2-4BFA-471C-AB03-0577869E62CB")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ICamApiSimulationObjectTolerance
Properties
Absolute
Absolute tolerance value in current linear units (active only if UseAbsolute = true)
Declaration
double Absolute { get; set; }
Property Value
| Type | Description |
|---|---|
| double |
Equivalent
Equivalent (relative) tolerance value. For workpiece model the value range corresponds to (trackbar position) * 10; for the tool it is (trackbar position - 1) * 25. Active only if UseAbsolute = false.
Declaration
int Equivalent { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
UseAbsolute
When true, the absolute tolerance value is used; when false, the equivalent value is used.
Declaration
bool UseAbsolute { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |