drawLine() private method

private drawLine ( int x1, int y1, int x2, int y2 ) : void
x1 int
y1 int
x2 int
y2 int
return void
示例#1
0
 public override void execute(WindowsGraphics underlying)
 {
     underlying.setColor(color);
     underlying.setAlpha(alpha);
     underlying.drawLine(x1, y1, x2, y2);
 }
示例#2
0
 public override void execute(WindowsGraphics underlying)
 {
     underlying.setColor(color);
     underlying.setAlpha(alpha);
     underlying.drawLine(x1, y1, x2, y2);
 }