⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 capfloorplan.java

📁 The ElectricTM VLSI Design System is an open-source Electronic Design Automation (EDA) system that c
💻 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 + -