fillRect() 개인적인 메소드

private fillRect ( int x, int y, int w, int h ) : void
x int
y int
w int
h int
리턴 void
예제 #1
0
 public override void execute(WindowsGraphics underlying)
 {
     underlying.setColor(color);
     underlying.setAlpha(alpha);
     underlying.fillRect(x, y, w, h);
 }
예제 #2
0
 public override void execute(WindowsGraphics underlying)
 {
     underlying.setColor(color);
     underlying.setAlpha(alpha);
     underlying.fillRect(x, y, w, h);
 }