capfloorplan.java

来自「The ElectricTM VLSI Design System is an 」· Java 代码 · 共 27 行

JAVA
27
字号
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 + =
减小字号Ctrl + -
显示快捷键?