Files
test_demo/MX-PD-盘古 - new/PanGu.DieBonderApp/MainShell/Process/DieTransfer/DiePositioning/WaferScanArea.cs

23 lines
453 B
C#
Raw Normal View History

using System.Windows;
namespace MainShell.Process
{
public class WaferScanArea
{
public Point StartPoint { get; set; }
public Point EndPoint { get; set; }
public double MinX { get; set; }
public double MaxX { get; set; }
public double MinY { get; set; }
public double MaxY { get; set; }
public double WaferWidth { get; set; }
public double WaferHeight { get; set; }
}
}