Lines Matching refs:getX

19 		if ($corner2->getX() < $corner1->getX()) {
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());
35 $X1 = $corner1->getX();
38 $X2 = $corner2->getX();
105 $X1 = $corner1->getX() - .2;
107 $X2 = $corner2->getX() + .2;
143 $X = cos ( ($i + 180) * M_PI / 180 ) * $radius + $point1->getX() + $radius;
147 $X = cos ( ($i - 90) * M_PI / 180 ) * $radius + $point2->getX() - $radius;
151 $X = cos ( ($i) * M_PI / 180 ) * $radius + $point2->getX() - $radius;
155 $X = cos ( ($i + 90) * M_PI / 180 ) * $radius + $point1->getX() + $radius;
160 $X1 = $point1->getX() - .2;
162 $X2 = $point2->getX() + .2;
206 + $point1->getX()
214 + $point2->getX()
222 + $point2->getX()
230 + $point1->getX()
239 $point1->getX() + $radius, $Yi1,
242 imageline($this->picture, $point2->getX() - $radius, $Yi2,
247 $point2->getX() - $radius, $Yi3,
253 $point1->getX() + $radius, $Yi4,
271 $point1->getX(), $point1->getY() + $radius,
272 $point2->getX(), $point2->getY() - $radius,
276 $point1->getX() + $radius, $point1->getY(),
277 $point2->getX() - $radius, $point2->getY(),
280 $X1 = $point1->getX() - .2;
282 $X2 = $point2->getX() + .2;
325 $XStep = ($point2->getX() - $point1->getX()) / $Distance;
329 $X = $i * $XStep + $point1->getX();
332 if ((($boundingBoxMin == null) || (($X >= $boundingBoxMin->getX())
334 && (($boundingBoxMax == null) || (($X <= $boundingBoxMax->getX())
352 $XStep = ($point2->getX() - $point1->getX()) / $Distance;
357 $X = $i * $XStep + $point1->getX();
361 if (($boundingBoxMin == null || (($X >= $boundingBoxMin->getX())
363 && ($boundingBoxMax == null || (($X <= $boundingBoxMax->getX())
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,
412 $Xi = floor ( $point->getX() );
415 if ($Xi == $point->getX() && $Yi == $point->getY()) {
419 $point->getX(), $point->getY(),
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)
452 $RGB2 = imagecolorat ( $this->picture, $point->getX(), $point->getY());
465 imagesetpixel($this->picture, $point->getX(), $point->getY(), $C_Aliased );
518 $point->getX() + $shadowProperties->xDistance,
527 $point->getX(), $point->getY(),
539 $X = cos ( $i * M_PI / 180 ) * $height + $center->getX();
557 $X1 = cos ( $i * M_PI / 180 ) * $height + $center->getX();
559 $X2 = cos ( (180 - $i) * M_PI / 180 ) * $height + $center->getX();