FilledRect

Retired DISLab
이동: 둘러보기, 찾기
import acm.graphics.*;
import java.awt.*;
 
public class FilledRect extends GRect {
 
	public FilledRect(double x, double y, double width, double height) {
		super(x, y, width, height);
		setFilled(true);
	}
 
	public FilledRect(double x, double y, double width, double height, Color color) {
		this(x, y, width, height);
		setColor(color);
	}
}
개인 도구
이름공간
변수
행위
둘러보기
구성원
연구
연구실
기타
도구모음
인쇄/내보내기