Lines Matching refs:point

386 …public function drawAntialiasPixel(Point $point, Color $color, ShadowProperties $shadowProperties,…  argument
389 $this->drawAntialiasPixel(new Point($point->getX() + $shadowProperties->xDistance,
390 $point->getY() + $shadowProperties->yDistance),
398 $this->drawAntialiasPixel(new Point($point->getX() + $shadowProperties->xDistance - $i / 2,
399 $point->getY() + $shadowProperties->yDistance - $i / 2),
404 $this->drawAntialiasPixel(new Point($point->getX() + $shadowProperties->xDistance + $i / 2,
405 $point->getY() + $shadowProperties->yDistance + $i / 2),
412 $Xi = floor ( $point->getX() );
413 $Yi = floor ( $point->getY() );
415 if ($Xi == $point->getX() && $Yi == $point->getY()) {
419 $point->getX(), $point->getY(),
422 $this->drawAlphaPixel($point, $alpha, $color);
424 $Alpha1 = (((1 - ($point->getX() - $Xi)) * (1 - ($point->getY() - $Yi)) * 100) / 100) * $alpha;
429 $Alpha2 = ((($point->getX() - $Xi) * (1 - ($point->getY() - $Yi)) * 100) / 100) * $alpha;
434 $Alpha3 = (((1 - ($point->getX() - $Xi)) * ($point->getY() - $Yi) * 100) / 100)
440 $Alpha4 = ((($point->getX() - $Xi) * ($point->getY() - $Yi) * 100) / 100)
448 public function drawAlphaPixel(Point $point, $alpha, Color $color) { argument
452 $RGB2 = imagecolorat ( $this->picture, $point->getX(), $point->getY());
465 imagesetpixel($this->picture, $point->getX(), $point->getY(), $C_Aliased );
513 …function drawText($fontSize, $angle, Point $point, Color $color, $fontName, $text, ShadowPropertie… argument
518 $point->getX() + $shadowProperties->xDistance,
519 $point->getY() + $shadowProperties->yDistance,
527 $point->getX(), $point->getY(),