You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
630 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Rs.MotionPlat.Commom
{
public class TargetPosition
{
public double X { get; set; }
public double Y1 { get; set; }
public double Y2 { get; set; }
public double NozzleZ { get; set; }
public double NozzleZ1 { get; set; }
public double NozzleZ2 { get; set; }
public double NozzleZ3 { get; set; }
public double NozzleZ4 { get; set; }
public double StockZ { get; set; }
public double TakeTrayX { get; set; }
}
}