| /plugin/statdisplay/pchart/ |
| D | ICanvas.php | 15 …function drawRectangle(Point $corner1, Point $corner2, Color $color, $lineWidth, $lineDotSize, Sha… 17 function drawFilledRectangle(Point $corner1, Point $corner2, Color $color, 24 function drawRoundedRectangle(Point $corner1, Point $corner2, $radius, 28 function drawFilledRoundedRectangle(Point $point1, Point $point2, $radius, 32 …wLine(Point $point1, Point $point2, Color $color, $lineWidth, $lineDotSize, ShadowProperties $shad… 34 …tedLine(Point $point1, Point $point2, $dotSize, $lineWidth, Color $color, ShadowProperties $shadow… 36 …function drawAntialiasPixel(Point $point, Color $color, ShadowProperties $shadowProperties, $alpha… 38 …function drawText($fontSize, $angle, Point $point, Color $color, $fontName, $text, ShadowPropertie… 45 …function drawCircle(Point $center, $height, Color $color, ShadowProperties $shadowProperties, $wid… 47 …function drawFilledCircle(Point $center, $height, Color $color, ShadowProperties $shadowProperties…
|
| D | TestCanvas.php | 22 …function drawRectangle(Point $corner1, Point $corner2, Color $color, $lineWidth, $lineDotSize, Sha… 26 function drawFilledRectangle(Point $corner1, Point $corner2, Color $color, 35 function drawRoundedRectangle(Point $corner1, Point $corner2, $radius, 41 function drawFilledRoundedRectangle(Point $point1, Point $point2, $radius, 47 …wLine(Point $point1, Point $point2, Color $color, $lineWidth, $lineDotSize, ShadowProperties $shad… 51 …tedLine(Point $point1, Point $point2, $dotSize, $lineWidth, Color $color, ShadowProperties $shadow… 55 …function drawAntialiasPixel(Point $point, Color $color, ShadowProperties $shadowProperties, $alpha… 59 …function drawText($fontSize, $angle, Point $point, Color $color, $fontName, $text, ShadowPropertie… 68 …function drawCircle(Point $center, $height, Color $color, ShadowProperties $shadowProperties, $wid… 72 …function drawFilledCircle(Point $center, $height, Color $color, ShadowProperties $shadowProperties…
|
| D | GDCanvas.php | 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, [all …]
|
| D | pChart.php | 222 $this->canvas->drawFilledRectangle(new Point($this->GArea_X1, $this->GArea_Y1), 223 new Point($this->GArea_X2, $this->GArea_Y2), 226 $this->canvas->drawRectangle(new Point($this->GArea_X1, $this->GArea_Y1), 227 new Point($this->GArea_X2, $this->GArea_Y2), 254 $this->canvas->drawLine(new Point($X1, $Y1), 255 new Point($X2, $Y2 + 1), 311 $this->canvas->drawLine(new Point($this->GArea_X1, $this->GArea_Y1), 312 new Point($this->GArea_X1, $this->GArea_Y2), 317 $this->canvas->drawLine(new Point($this->GArea_X1, $this->GArea_Y2), 318 new Point($this->GArea_X2, $this->GArea_Y2), [all …]
|
| D | PieChart.php | 81 $this->canvas->drawFilledRoundedRectangle(new Point($XPos + 1, $YPos + 1), 82 new Point($XPos + $MaxWidth + 1, 90 $this->canvas->drawFilledRoundedRectangle(new Point($XPos, $YPos), 91 new Point($XPos + $MaxWidth, 104 $this->canvas->drawFilledRectangle(new Point($XPos + 10, 106 new Point($XPos + 14, 113 new Point($XPos + 22, 217 $this->canvas->drawCircle(new Point($XPos - .5, $YPos - .5), 221 $this->canvas->drawCircle(new Point($XPos - .5, $YPos - .5), 229 $this->canvas->drawLine(new Point($TopPlots [$Key] [$j], [all …]
|
| D | Point.php | 6 class Point { class 20 public function distanceFrom(Point $other) { 30 return new Point($this->x + $x, $this->Y + $y);
|
| /plugin/geophp/vendor/funiq/geophp/src/Adapter/ |
| D | GeoHash.php | 6 use geoPHP\Geometry\Point; alias 84 * @return Point|Polygon the converted GeoHash 90 return new Point($decodedHash['centerLongitude'], $decodedHash['centerLatitude']); 96 new Point($decodedHash['minLongitude'], $decodedHash['maxLatitude']), 97 new Point($decodedHash['maxLongitude'], $decodedHash['maxLatitude']), 98 new Point($decodedHash['maxLongitude'], $decodedHash['minLatitude']), 99 new Point($decodedHash['minLongitude'], $decodedHash['minLatitude']), 100 new Point($decodedHash['minLongitude'], $decodedHash['maxLatitude']), 122 /** @var Point $geometry */ 151 * @param Point $point
|
| D | GeoRSS.php | 9 use geoPHP\Geometry\Point; alias 115 $coordinates[] = new Point($lon, $lat); 127 $points[] = !empty($pointArray) ? $pointArray[0] : new Point(); 169 new Point($parts[3], $parts[2]), 170 new Point($parts[3], $parts[0]), 171 new Point($parts[1], $parts[0]), 172 new Point($parts[1], $parts[2]), 173 new Point($parts[3], $parts[2]), 189 $points[] = new Point($parts[1], $parts[0]);
|
| D | GeoJSON.php | 8 use geoPHP\Geometry\Point; alias 113 * @return Point 119 return new Point($coordinates[0], $coordinates[1]); 122 return new Point($coordinates[0], $coordinates[1], $coordinates[2]); 125 … return new Point($coordinates[0], $coordinates[1], $coordinates[2], $coordinates[3]); 128 return new Point();
|
| D | GoogleGeocode.php | 7 use geoPHP\Geometry\Point; alias 169 return new Point($lon, $lat); 189 return new Point($lon, $lat); 196 return new Point($lon, $lat); 203 return new Point($lon, $lat); 210 return new Point($lon, $lat);
|
| D | TWKB.php | 25 use geoPHP\Geometry\Point; alias 55 /** @var Point|null */ 168 $this->lastPoint = new Point(0, 0, 0, 0); 205 * @return Point 211 return new Point(); 230 $this->lastPoint = new Point($x, $y, $z, $m); 389 $this->lastPoint = new Point(0, 0, 0, 0); 393 /** @var Point $geometry */ 455 * @param Point $geometry 474 …$this->lastPoint = new Point($x, $y, $this->writeOptions['hasZ'] ? $z : null, $this->writeOptions[…
|
| D | WKB.php | 7 use geoPHP\Geometry\Point; alias 186 $point = new Point($coordinates[0], $coordinates[1]); 190 $point = new Point($coordinates[0], $coordinates[1], $coordinates[2]); 192 $point = new Point($coordinates[0], $coordinates[1], null, $coordinates[2]); 196 … $point = new Point($coordinates[0], $coordinates[1], $coordinates[2], $coordinates[3]); 296 /** @var Point $geometry */ 328 * @param Point $point
|
| /plugin/geophp/vendor/funiq/geophp/src/Geometry/ |
| D | MultiPoint.php | 15 * @property Point[] $components The elements of a MultiPoint are Points 22 parent::__construct($components, true, Point::class); 46 $points[] = Point::fromArray($point); 87 return new Point(); 103 return new Point($x / $this->numPoints(), $y / $this->numPoints());
|
| D | Geometry.php | 134 * @return Point 174 * @return Point|null 179 * @return Point|null 191 * @return Point|null 214 * @return Point[] 352 new Point($boundingBox['maxx'], $boundingBox['miny']), 353 new Point($boundingBox['maxx'], $boundingBox['maxy']), 354 new Point($boundingBox['minx'], $boundingBox['maxy']), 355 new Point($boundingBox['minx'], $boundingBox['miny']), 356 new Point($boundingBox['maxx'], $boundingBox['miny']), [all …]
|
| D | Curve.php | 13 * @property Point[] $components A curve consists of sequence of Points 18 … __construct($components = [], $allowEmptyComponents = false, $allowedComponentType = Point::class) 67 * @return Point[]
|
| D | LineString.php | 13 * @property Point[] $components 27 * @param Point[] $points An array of at least two points with 40 $points[] = Point::fromArray($point); 60 * @return Point|null 77 return new Point(); 90 /** @var Point $previousPoint */ 108 return new Point($x / $length, $y / $length); 125 /** @var Point $previousPoint */ 142 /** @var Point $previousPoint */ 406 * @return LineString[]|array[Point]
|
| /plugin/aichat/vendor/bdelespierre/php-kmeans/src/KMeans/ |
| D | Cluster.php | 29 class Cluster extends Point implements \IteratorAggregate, \Countable 56 public function attach(Point $point): Point 66 public function detach(Point $point): Point
|
| D | Space.php | 59 public function newPoint(array $coordinates): Point 65 return new Point($this, $coordinates); 68 public function addPoint(array $coordinates, $data = null): Point 77 if (!$point instanceof Point) { 113 public function getRandomPoint(Point $min, Point $max): Point
|
| /plugin/jcapture/src/com/hammurapi/jcapture/ |
| D | FrameImpl.java | 4 import java.awt.Point; 12 private Point mousePointer; 16 FrameImpl(List<Shape> shapes, Point mousePointer, Dimension size, boolean isActive) { in FrameImpl() 44 public Point getMousePointer() { in getMousePointer()
|
| D | ShapeImpl.java | 3 import java.awt.Point; 56 private Point location; 59 ShapeImpl(Point location, ShapeContent content) { in ShapeImpl() 66 public Point getLocation() { in getLocation()
|
| D | VideoEncoder.java | 5 import java.awt.Point; 112 Point getLocation(); in getLocation() 124 Point getMousePointer(); in getMousePointer()
|
| /plugin/spatialhelper/helper/ |
| D | search.php | 23 use geoPHP\Geometry\Point; alias 80 $geometry = new Point($lon, $lat); 89 * @param Point|null $p 94 final public function findNearby(string $geohash, Point $p = null): array 97 if (!$p instanceof Point) { 152 $point = new Point($geotags ['lon'], $geotags ['lat']);
|
| /plugin/html2pdf/html2pdf/html2ps/ |
| D | path.point.php | 3 class Point { class 7 function Point($x, $y) { function in Point 13 return new Point($this->x, $this->y);
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataflow/ |
| D | ProgressTimeseries.php | 24 protected $dataPointsType = Point::class; 36 * @param Point[] 43 * @return Point[]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/ |
| D | TimeSeries.php | 31 protected $pointsType = Point::class; 87 * @param Point[] 94 * @return Point[]
|