예제 #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);
 }