Lines Matching refs:Point

16 	function drawFilledRectangle(Point $corner1, Point $corner2, Color $color,
20 $newCorner1 = new Point($corner2->getX(), $corner1->getY());
21 $newCorner2 = new Point($corner1->getX(), $corner2->getY());
28 $newCorner1 = new Point($corner1->getX(), $corner2->getY());
29 $newCorner2 = new Point($corner2->getX(), $corner1->getY());
44 $this->drawFilledRectangle(new Point($X1 + $shadowProperties->xDistance,
46 new Point($X2 + $shadowProperties->xDistance,
56 $this->drawFilledRectangle(new Point($X1 + $shadowProperties->xDistance - $i / 2,
58 new Point($X2 + $shadowProperties->xDistance - $i / 2,
65 $this->drawFilledRectangle(new Point($X1 + $shadowProperties->xDistance + $i / 2,
67 new Point($X2 + $shadowProperties->xDistance + $i / 2,
95 $this->drawRectangle(new Point($X1, $Y1),
96 new Point($X2, $Y2),
104 …public function drawRectangle(Point $corner1, Point $corner2, Color $color, $lineWidth, $lineDotSi…
109 $this->drawLine(new Point($X1, $Y1),
110 new Point($X2, $Y1),
116 $this->drawLine(new Point($X2, $Y1),
117 new Point($X2, $Y2),
123 $this->drawLine(new Point($X2, $Y2),
124 new Point($X1, $Y2),
130 $this->drawLine(new Point($X1, $Y2),
131 new Point($X1, $Y1),
139 …public function drawRoundedRectangle(Point $point1, Point $point2, $radius, Color $color, $lineWid…
145 $this->drawAntialiasPixel(new Point($X, $Y), $color, $shadowProperties);
149 $this->drawAntialiasPixel(new Point($X, $Y), $color, $shadowProperties);
153 $this->drawAntialiasPixel(new Point($X, $Y), $color, $shadowProperties);
157 $this->drawAntialiasPixel(new Point($X, $Y), $color, $shadowProperties);
164 $this->drawLine(new Point($X1 + $radius, $Y1),
165 new Point($X2 - $radius, $Y1),
171 $this->drawLine(new Point($X2, $Y1 + $radius),
172 new Point($X2, $Y2 - $radius),
178 $this->drawLine(new Point($X2 - $radius, $Y2),
179 new Point($X1 + $radius, $Y2),
185 $this->drawLine(new Point($X1, $Y2 - $radius),
186 new Point($X1, $Y1 + $radius),
197 function drawFilledRoundedRectangle(Point $point1, Point $point2, $radius,
256 $this->drawAntialiasPixel(new Point($Xi1, $Yi1),
259 $this->drawAntialiasPixel(new Point($Xi2, $Yi2),
262 $this->drawAntialiasPixel(new Point($Xi3, $Yi3),
265 $this->drawAntialiasPixel(new Point($Xi4, $Yi4),
284 $this->drawLine(new Point($X1 + $radius, $Y1),
285 new Point($X2 - $radius, $Y1),
290 $this->drawLine(new Point($X2, $Y1 + $radius),
291 new Point($X2, $Y2 - $radius),
296 $this->drawLine(new Point($X2 - $radius, $Y2),
297 new Point($X1 + $radius, $Y2),
302 $this->drawLine(new Point($X1, $Y2 - $radius),
303 new Point($X1, $Y1 + $radius),
311 …wLine(Point $point1, Point $point2, Color $color, $lineWidth, $lineDotSize, ShadowProperties $shad…
337 $this->drawAntialiasPixel(new Point($X, $Y), $color, $shadowProperties);
342 $this->drawAntialiasPixel(new Point($X + $j, $Y + $j),
349 …tedLine(Point $point1, Point $point2, $dotSize, $lineWidth, Color $color, ShadowProperties $shadow…
366 $this->drawAntialiasPixel(new Point($X, $Y),
372 $this->drawAntialiasPixel(new Point($X + $j,
386 …public function drawAntialiasPixel(Point $point, Color $color, ShadowProperties $shadowProperties,…
389 $this->drawAntialiasPixel(new Point($point->getX() + $shadowProperties->xDistance,
398 $this->drawAntialiasPixel(new Point($point->getX() + $shadowProperties->xDistance - $i / 2,
404 $this->drawAntialiasPixel(new Point($point->getX() + $shadowProperties->xDistance + $i / 2,
426 $this->drawAlphaPixel(new Point($Xi, $Yi), $Alpha1, $color);
431 $this->drawAlphaPixel (new Point($Xi + 1, $Yi), $Alpha2, $color);
437 $this->drawAlphaPixel (new Point($Xi, $Yi + 1), $Alpha3, $color);
443 $this->drawAlphaPixel (new Point($Xi + 1, $Yi + 1), $Alpha4, $color);
448 public function drawAlphaPixel(Point $point, $alpha, Color $color) {
513 …function drawText($fontSize, $angle, Point $point, Color $color, $fontName, $text, ShadowPropertie…
531 …function drawCircle(Point $center, $height, Color $color, ShadowProperties $shadowProperties, $wid…
541 $this->drawAntialiasPixel(new Point($X, $Y),
548 …public function drawFilledCircle(Point $center, $height, Color $color, ShadowProperties $shadowPro…
562 $this->drawAntialiasPixel(new Point($X1 - 1, $Y1 - 1),
565 $this->drawAntialiasPixel(new Point($X2 - 1, $Y2 - 1),