严智鑫
2025-05-09 235d23f498e46e3415bf12a81b2056b792ea1808
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
    }
}