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

📄 rect.java

📁 一个简单的JAVA绘图程序
💻 JAVA
字号:
//********************************************************************
//  Rect.java     Author: Lewis and Loftus / Peter DePasquale
//
//  Refinement #2
//
//  Represents a rectangle shape io the PaintBox application.
//********************************************************************

import java.io.*;
import java.awt.*;

public class Rect extends BoundedShape
{
   //-----------------------------------------------------------------
   //  Sets up the rectangle's color, position, and size.
   //-----------------------------------------------------------------
   public Rect (Color color, Point corner, int wide, int high)
   {
      super (color, corner, wide, high);
   }

   //-----------------------------------------------------------------
   //  Draws the rectangle.
   //-----------------------------------------------------------------
   public void draw (Graphics page)
   {
      page.setColor (strokeColor);
      page.drawRect (upperLeft.x, upperLeft.y, width, height);
   }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -