📄 tools.java
字号:
package tools;
import java.awt.Point;// This is the main Tool class where the different tools//are used to manipulate the different objects onto the canvaspublic class Tools { Point a = new Point(); private int ID; public Tools() { } public Tools(Point x){ a = x; } public void setID(int ID){ this.ID = ID; } public int getID(){ return ID; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -