Files
test_demo/MX-PD-盘古 - new/PanGu.DieBonderApp/MainShell/Models/SubstratePoint.cs

21 lines
381 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MainShell.Models
{
public struct SubstratePoint
{
public double X { get; set; }
public double Y { get; set; }
public SubstratePoint(double x, double y)
{
X = x;
Y = y;
}
}
}