公告板
版本库
filestore
活动
搜索
登录
main
/
Haier_MES
海尔mes项目
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
提交nglib
廖井涛
2024-03-04
eae17d27ec56a6b7887f5597335e38ca40273ef4
[Haier_MES.git]
/
nglib
/
src
/
ng
/
Algorithm
/
Layouts
/
Piece.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package ng.Algorithm.Layouts;
public class Piece {
public int width;
public int height;
public double w;
public double h;
public Object Source;
public LayoutMode Mode;
public enum LayoutMode{
Heng,
Zhong,
Both
}
}