コード例 #1
0
ファイル: Mark.class.php プロジェクト: rhertzog/lcs
 function drawCircle($point)
 {
     $this->driver->filledEllipse($this->fill, $point, $this->size, $this->size);
     $this->border->ellipse($this->driver, $point, $this->size, $this->size);
 }
コード例 #2
0
 protected function drawCircle(awPoint $point)
 {
     $this->drawer->filledEllipse($this->fill, $point, $this->size, $this->size);
     $this->border->ellipse($this->drawer, $point, $this->size, $this->size);
 }