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

📄 eraser.java

📁 自己课程设计做的 用JAVA的画板程序
💻 JAVA
字号:
/* 软件作者: 熊锡君,时守刚 软件版权归作者所有,其他人可以对软件进行修改,可以使用软件代码,(按类使用请保留作者信息)*/package Painter;import java.awt.*;import main.MyCanvas;public class Eraser extends Shape {	private int x;	private int y;	public Eraser(Color colorPen, Color colorBrush, int lineWide, int x,int y) {		super(colorPen, colorBrush, lineWide);		this.x = x;		this.y = y;		}		public boolean IsPoint(int x,int y,float j1)	{		return false;	}	public void draw(Graphics g,int m_DrawMode,Color bgColor) {		g.setColor(bgColor);		int wide = MyCanvas.ERASER_STROKES[super.m_LineWide];		g.fillRect(this.x,this.y,wide,wide);		}}

⌨️ 快捷键说明

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