using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SKMC.Api.Motion.Model
{
///
/// 运动位置
/// 二维或者三维数据
/// 单位可以是实际位置/距离, 也可以是电机步距
///
public class MotionPosition
{
///
/// 二维或者三维的坐标点
///
public double[] Point { get; set; }
///
/// 速度参数
///
public int[] SpeedParam { get; set; }
}
}