using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.PlacedBlockDTO { /// /// 三维坐标结构体 /// 表示货物放置位置的左下前角坐标(X,Y,Z) /// 坐标系说明: /// - X轴:沿容器长度方向 /// - Y轴:沿容器宽度方向 /// - Z轴:垂直方向(高度) /// public struct Point3D { /// X轴坐标(毫米) public int X { get; } /// Y轴坐标(毫米) public int Y { get; } /// Z轴坐标(毫米) public int Z { get; } public Point3D(int x, int y, int z) { X = x; Y = y; Z = z; } } }