Changes in Description

Add new Paramcontrol with Range Validation
move Values from general to Etcher-Robot step Table
Add File Extension to Save/Open File Dialog
This commit is contained in:
2026-03-09 12:19:09 +01:00
parent ff9add4081
commit a753f1c7a7
7 changed files with 199 additions and 47 deletions

View File

@@ -161,18 +161,13 @@ public class ReceipeEtcher
/// </summary>
public UInt16 NumberRobotPos { get; set; }
public float Rpm { get; set; }
/// <summary>
/// Roboter position and setting data
/// </summary>
public List<EtcherRobotStepData> RobotStepData { get; set; }
/// <summary>
/// Radial position of water jet under the blank in mm
/// </summary>
public float RadialPosLowerWaterJet { get; set; }
public ReceipeEtcher()
{
RobotStepData = new List<EtcherRobotStepData>();
@@ -186,6 +181,9 @@ public class EtcherRobotStepData
public float PosY { get; set; }
public float PosZ { get; set; }
public float AngleAlpha { get; set; }
public float AngleGamma { get; set; }
public float RadialposUnderwater { get; set; }
public float ChuckRpm { get; set; }
public float MoveSpeed { get; set; }
public float Delay { get; set; }
public UInt16 Medium { get; set; }