📄 capfloorplan.java
字号:
package com.sun.electric.tool.generator.layout.fill;/** * FloorPlan. * User: gg151869 * Date: Feb 23, 2007 */class Floorplan { public final double cellWidth; public final double cellHeight; public final boolean horizontal; public Floorplan(double width, double height, boolean horiz) { cellWidth = width; cellHeight = height; horizontal = horiz; }}/** * CapFloorPlan. */public class CapFloorplan extends Floorplan { public CapFloorplan(double width, double height, boolean horiz) { super(width, height, horiz); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -