/plugin/geophp/vendor/funiq/geophp/src/Geometry/ |
H A D | LineString.php | 9 * A LineString is defined by a sequence of points, (X,Y) pairs, which define the reference points of the line string. 10 * Linear interpolation between the reference points defines the resulting linestring. 27 * @param Point[] $points An array of at least two points with 31 public function __construct($points = []) argument 33 parent::__construct($points); 38 $points = []; 40 $points[] = Point::fromArray($point); 42 return new static($points); [all...] |
H A D | Polygon.php | 31 'Cannot create Polygon: Invalid number of points in LinearRing. Found ' . 85 $points = $exteriorRing->getComponents(); 87 $pointCount = count($points); 92 foreach ($points as $k => $p) { 94 $a = $a + ($p->x() * $points[$j]->y()) - ($p->y() * $points[$j]->x()); 156 $points = $ring->getPoints(); 157 $pointCount = count($points); 163 foreach ($points as $k => $point) { 165 $P = ($point->x() * $points[ [all...] |
H A D | MultiLineString.php | 65 * The boundary of a MultiLineString is a MultiPoint consists of the start and end points of its non-closed LineStrings 71 $points = []; 74 $points[] = $line->startPoint(); 75 $points[] = $line->endPoint(); 78 return new MultiPoint($points);
|
H A D | Collection.php | 236 $points = []; 237 // Same as array_merge($points, $component->getPoints()), but 500× faster 238 static::getPointsRecursive($this, $points); 239 return $points; 243 * @param Collection $geometry The geometry from which points will be extracted 244 * @param Point[] $points Result array as reference 246 private static function getPointsRecursive($geometry, &$points) argument 250 $points[] = $component; 252 static::getPointsRecursive($component, $points); 299 // All points matc [all...] |
H A D | MultiPoint.php | 44 $points = []; 46 $points[] = Point::fromArray($point); 48 return new static($points);
|
/plugin/sketchcanvas/ |
H A D | README.md | 49 points: '485,569:233,536'
51 points: '605,546:478,421'
53 points: '382,147:264,303'
56 points: '630,139:639,272'
59 points: '763,153:492,244'
63 points: '720,142:435,209'
67 points: '134,115:372,269'
71 points: '583,343'
74 points: '583,369'
78 points [all...] |
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Contactcenterinsights/ |
H A D | GoogleCloudContactcenterinsightsV1CalculateStatsResponseTimeSeries.php | 47 public function setPoints($points) argument 49 $this->points = $points; 56 return $this->points;
|
/plugin/socialshareprivacy2/SSP/scripts/ |
H A D | jquery.socialshareprivacy.hackernews.js | 56 var points = $.fn.socialSharePrivacy.formatNumber(item.points); 58 $code.find(".points a").text(points).attr('title', 59 item.points === 1 ? 61 options.txt_n_points.replace(/{points}/g, points));
|
/plugin/sketchcanvas/script/ |
H A D | SketchCanvas.js | 383 // Check to see if we are dragging any of control points.
388 var pts = selectobj[n].points;
394 // control points. Written as a local function to clarify logic.
398 // Check control points for only the "path" shapes.
434 // Check for existing control points
435 // Select only the control points around the selected vertex
567 for(var i = 0; i < obj.points.length; i++){
568 var pt = obj.points[i];
571 // Move control points, too
597 for(var i = 0; i < obj.points 1012 points: dat global() property in Shape.serialize.alldat 1813 Tool(name, points, params) global() argument [all...] |
/plugin/diagramsnet/lib/js/diagramly/ |
H A D | DevTools.js | 42 if (geo.points != null) 44 tip += 'points(' + geo.points.length + ')='; 46 for (var i = 0; i < geo.points.length; i++) 48 tip += parseFloat(geo.points[i].x) + ',' + parseFloat(geo.points[i].y) + ';';
|
H A D | DistanceGuides.js | 245 var points = []; 260 points.push(new mxPoint(p1.x - dx, p1.y - dy)); 261 points.push(new mxPoint(p1.x + dx, p1.y + dy)); 262 points.push(p1); 263 points.push(p2); 264 points.push(new mxPoint(p2.x - dx, p2.y - dy)); 265 points.push(new mxPoint(p2.x + dx, p2.y + dy)); 269 curGuide.points = points; 274 … var guideEq = new mxPolyline(points, mxConstants.GUIDE_COLOR, mxConstants.GUIDE_STROKEWIDTH);
|
/plugin/googlemap3/ |
H A D | syntax.php | 85 $points = ''; 89 $points .= ",{lat:$lat, lng:$lng, msg: '$msg', txt: '$text'}"; 91 $points = ", overlay : [ ".substr($points,1)." ]"; 94 $js = "googleMapArray[googleMapArray.length] = {".$param.$points." }; ";
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/ |
H A D | TimeSeries.php | 89 public function setPoints($points) argument 91 $this->points = $points; 98 return $this->points;
|
/plugin/googlemaps/syntax/ |
H A D | googlemap.php | 81 $points = ''; 85 $points .= ",{lat:$lat,lon:$lon,txt:'$text'}"; 87 $points = ", overlay : [ ".substr($points,1)." ]"; 90 $js = "googlemap[googlemap.length] = {".$param.$points." };";
|
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/ |
H A D | GeoPolygon.php | 32 * @param array $points Points making up polygon 34 public function __construct(string $key, array $points) argument 37 $this->_points = $points; 48 'points' => $this->_points,
|
/plugin/geophp/vendor/funiq/geophp/src/Adapter/ |
H A D | GeoRSS.php | 123 $points = []; 127 $points[] = !empty($pointArray) ? $pointArray[0] : new Point(); 129 return $points; 150 $points = $this->getPointsFromCoordinates(trim($polygon->firstChild->nodeValue)); 151 $exteriorRing = new LineString($points); 181 // Circles are rendered into points 185 $points = []; 189 $points[] = new Point($parts[1], $parts[0]); 191 return $points;
|
H A D | GeoJSON.php | 134 $points = []; 136 $points[] = $this->arrayToPoint($componentArray); 138 return new LineString($points); 157 $points = []; 159 $points[] = $this->arrayToPoint($componentArray); 161 return new MultiPoint($points);
|
H A D | WKT.php | 142 $points = []; 144 $points[] = $this->parsePoint($part); 146 return new LineString($points); 177 $points = []; 183 $points[] = $this->parsePoint(trim($part, ' ()')); 185 return new MultiPoint($points);
|
H A D | GoogleGeocode.php | 40 * @param string $returnType Type of Geometry to return. Can either be 'points' or 'bounds' (polygon) 79 $points = []; 81 $points[] = $this->getPoint($delta); 83 return new MultiPoint($points); 174 $points = [ 181 $outerRing = new LineString($points);
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/ |
H A D | Prime.php | 524 public function multiplyAddPoints(array $points, array $scalars) argument 526 $length = count($points); 528 foreach ($points as &$point) { 532 $wnd = [$this->getNAFPoints($points[0], 7)]; 533 $wndWidth = [isset($points[0]['nafwidth']) ? $points[0]['nafwidth'] : 7]; 535 $wnd[] = $this->getNAFPoints($points[$i], 1); 536 $wndWidth[] = isset($points[$i]['nafwidth']) ? $points[$i]['nafwidth'] : 1; 555 $points[$a], // 1 558 $points[$b] // 7 561 $comb[1] = $this->addPoint($points[$a], $points[$b]); [all …]
|
H A D | Base.php | 227 public function multiplyAddPoints(array $points, array $scalars) argument 229 $p1 = $this->convertToInternal($points[0]); 230 $p2 = $this->convertToInternal($points[1]);
|
/plugin/osm/ |
H A D | script.js | 4 var points = this.readPoints(div); 44 if (isArray(points)) { 49 for(var p = 0; p < points.length; p++) { 50 var point = points[p];
|
/plugin/a2s/ |
H A D | ASCIIToSVG.php | 1941 private $points; variable in dokuwiki\\plugin\\a2s\\SVGPath 1998 $this->points = array_merge($startPoints, $this->points); 2017 if ($this->points[0]->x == $p->x && $this->points[0]->y == $p->y) { 2118 if (($this->points[$i]->gridY < $y && $this->points[$j]->gridY >= $y || 2119 $this->points[$j]->gridY < $y && $this->points[$i]->gridY >= $y) && 2120 ($this->points[$i]->gridX <= $x || $this->points[$j]->gridX <= $x)) { 2121 if ($this->points[$i]->gridX + ($y - $this->points[$i]->gridY) / 2122 ($this->points[$j]->gridY - $this->points[$i]->gridY) * 2123 ($this->points[$j]->gridX - $this->points[$i]->gridX) < $x) { 2479 $endPoint = $this->points[count($this->points) - 1]; [all …]
|
/plugin/pdftools/ |
H A D | admin.svg | 4 <polygon fill="#9AC9E3" points="20,16 9,32 31,32"/> 5 <polygon fill="#B3DDF5" points="31,22 23,32 39,32"/>
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/ |
H A D | OpenSSH.php | 165 $points = "\4" . $publicKey[0]->toBytes() . $publicKey[1]->toBytes(); 166 $key = Strings::packSSH2('sss', 'ecdsa-sha2-' . $alias, $alias, $points); 208 $points = "\4" . $publicKey[0]->toBytes() . $publicKey[1]->toBytes(); 211 … $privateKey = Strings::packSSH2('sssi', 'ecdsa-sha2-' . $alias, $alias, $points, $privateKey);
|