Home
last modified time | relevance | path

Searched refs:geometry (Results 51 – 75 of 100) sorted by path

1234

/plugin/diagramsnet/lib/plugins/trees/
H A Dtrees.js515 clones[1].geometry.x += (after) ? cell.geometry.width + spacing :
520 clones[1].geometry.y += (after) ? cell.geometry.height + spacing :
526 clones[1].geometry.x = cell.geometry.x + cell.geometry.width - clones[1].geometry.width;
723 clones[1].geometry.x = (bbox == null) ? cell.geometry.x + (cell.geometry.width -
725 clones[1].geometry.y += cell.geometry.height + level;
729 clones[1].geometry.x = (bbox == null) ? cell.geometry.x + (cell.geometry.width -
731 clones[1].geometry.y -= clones[1].geometry.height + level;
735 clones[1].geometry.x -= clones[1].geometry.width + level;
736 clones[1].geometry.y = (bbox == null) ? cell.geometry.y + (cell.geometry.height -
741 clones[1].geometry.x += cell.geometry.width + level;
[all …]
/plugin/diagramsnet/lib/plugins/webcola/
H A DmxWebColaLayout.js122 geometry = geometry.clone();
169 if (geometry.x + geometry.width > maxX)
171 maxX = geometry.x + geometry.width;
173 if (geometry.y + geometry.height > maxY)
175 maxY = geometry.y + geometry.height;
233 geometry.x = geometry.x - offsetX;
234 geometry.y = geometry.y - offsetY;
308 geometry = geometry.clone();
314 geometry.offset = geometry.offset.clone();
335 cell.geometry = geometry;
[all …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D2.2.js.map1geometry-box> ] | none\",\n \"relevance\": 55,\n \"references\": [\n …
H A Dbundle.js.map1geometry) {\n geometry.value *= Math.pow(2, -2 * k); // Density in points per square pixel.\n …
/plugin/dirtylittlehelper/script/
H A Dmermaid.min.js1geometry,e)},FeatureCollection:function(t,e){for(var n=t.features,r=-1,i=n.length;++r<i;)Bc(n[r].g…
H A Dmermaid.min.js.map1geometry","transformPolygon","transformRing","transformPoint","resize","cellSize","DragEvent","sub…
/plugin/dokutexit/conf/
H A Dheader-namespace.tex32 \usepackage[top=3cm,bottom=3cm,left=2.5cm,right=2.5cm]{geometry}
H A Dheader-page.tex32 \usepackage[top=3cm,bottom=3cm,left=2.5cm,right=2.5cm]{geometry}
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Dd3.min.js4 …ture:function(n,t){ht(n.geometry,t)},FeatureCollection:function(n,t){for(var e=n.features,r=-1,i=e…
/plugin/flowcharts/
H A Dmermaid.min.js1geometry,e)},FeatureCollection:function(t,e){for(var n=t.features,r=-1,i=n.length;++r<i;)Lu(n[r].g…
/plugin/geophp/
H A Dcomposer.lock57 "description": "Open-source native PHP library for doing geometry operations. Can read and write a wide variety of formats: (E)WKT, (E)WKB, TWKB, GeoJSON, KML, GPX, GeoRSS. Works with all Simple-Feature geometries (Point, LineString, Polygon...) and can be used to get centroids, bounding-boxes, area, etc.",
64 "geometry",
H A Ddeleted.files13 geoPHP/lib/geometry/Collection.class.php
14 geoPHP/lib/geometry/Geometry.class.php
15 geoPHP/lib/geometry/GeometryCollection.class.php
16 geoPHP/lib/geometry/LineString.class.php
17 geoPHP/lib/geometry/MultiLineString.class.php
18 geoPHP/lib/geometry/MultiPoint.class.php
19 geoPHP/lib/geometry/MultiPolygon.class.php
20 geoPHP/lib/geometry/Point.class.php
21 geoPHP/lib/geometry/Polygon.class.php
/plugin/geophp/vendor/funiq/geophp/
H A DREADME.md3 GeoPHP is a open-source native PHP library for doing geometry operations. It is a fork of famous [geoPHP](https://github.com/phayes/geoPHP) library by Patrick Hayes.
13 get a useful "core-set" of geometry operations that work in all environments, and an "extended-set"of operations
66 Calling get components returns the sub-geometries within a geometry as an array.
74 An alternative is to use the `asArray()` method. Using the above geometry collection of two linestrings,
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DEWKB.php13 public function write(Geometry $geometry, $writeAsHex = false, $bigEndian = false) argument
15 $this->SRID = $geometry->getSRID();
17 return parent::write($geometry, $writeAsHex, $bigEndian);
H A DEWKT.php16 * @param Geometry $geometry
20 public function write(Geometry $geometry) argument
22 $srid = $geometry->getSRID();
25 $wkt .= $geometry->out('wkt');
28 return $geometry->out('wkt');
H A DGPX.php47 * Read GPX string into geometry object
107 * Parses the GPX XML and returns a geometry
109 * @return GeometryCollection|Geometry Returns the geometry representation of the GPX (@see geoPHP::buildGeometry)
127 $geometry = geoPHP::buildGeometry($geometries);
133 if ($geometry->getData() !== null && $metadata !== null) {
134 $geometry = new GeometryCollection([$geometry]);
136 $geometry->setData($metadata);
139 return $geometry;
309 * @param Geometry|GeometryCollection $geometry
317 write(Geometry $geometry, $namespace = null, $allowedElements = null) global() argument
340 geometryToGPX($geometry) global() argument
434 collectionToGPX($geometry) global() argument
466 processGeometryData($geometry, $tagList, $indent = 't') global() argument
[all...]
H A DGeoAdapter.php34 * @param Geometry $geometry
37 public function write(Geometry $geometry); argument
H A DGeoHash.php109 * Convert the geometry to geohash.
111 * @param Geometry $geometry
113 * @return string the GeoHash or null when the $geometry is not a Point
115 public function write(Geometry $geometry, $precision = null) argument
117 if ($geometry->isEmpty()) {
121 if ($geometry->geometryType() === Geometry::POINT) {
122 /** @var Point $geometry */
123 return $this->encodePoint($geometry, $precision);
126 $envelope = $geometry->envelope();
H A DGeoJSON.php18 * Note that it will always return a GeoJSON geometry. This
20 * geometry of that feature strip everything else.
57 // It's a geometry - process it
82 $geometry = $this->read($obj->geometry);
85 $geometry->setData($property, $value);
89 return $geometry;
105 /** @var GeometryCollection $geometry */
106 $geometry = $this->$method($obj->coordinates);
107 $geometry
220 write(Geometry $geometry, $returnAsArray = false) global() argument
243 getArray($geometry, $isRoot = true) global() argument
[all...]
H A DGeoRSS.php37 * Read GeoRSS string into geometry objects
51 * @param Geometry $geometry
55 public function write(Geometry $geometry, $namespace = false) argument
61 return $this->geometryToGeoRSS($geometry) ?: '';
182 // @@TODO: Add good support once we have circular-string geometry support
195 * @param Geometry $geometry
198 protected function geometryToGeoRSS($geometry) argument
200 $type = $geometry->geometryType();
203 return $this->pointToGeoRSS($geometry);
206 return $this->linestringToGeoRSS($geometry);
224 pointToGeoRSS($geometry) global() argument
233 linestringToGeoRSS($geometry) global() argument
250 polygonToGeoRSS($geometry) global() argument
268 collectionToGeoRSS($geometry) global() argument
[all...]
H A DGoogleGeocode.php36 * Makes a geocoding (lat/lon lookup) with an address string or array geometry objects
115 * @param Geometry $geometry
123 public function write(Geometry $geometry, $apiKey = null, $returnType = 'string', $language = null) argument
125 $centroid = $geometry->centroid();
167 $lat = $this->result->results[$delta]->geometry->location->lat;
168 $lon = $this->result->results[$delta]->geometry->location->lng;
187 $lat = $this->result->results[$delta]->geometry->bounds->northeast->lat;
188 $lon = $this->result->results[$delta]->geometry->bounds->southwest->lng;
194 $lat = $this->result->results[$delta]->geometry->bounds->northeast->lat;
195 $lon = $this->result->results[$delta]->geometry
[all...]
H A DKML.php45 * Read KML string into geometry objects
87 /** @var Geometry|null $geometry */
88 $geometry = null;
94 $geometry = $this->$function($child);
99 if ($geometry) {
101 $geometry->setData($data);
103 $geometries[] = $geometry;
108 // The document does not have a placemark, try to create a valid geometry from the root element
240 * @param Geometry $geometry
244 public function write(Geometry $geometry, argument
257 geometryToKML($geometry) global() argument
284 pointToKML($geometry) global() argument
300 linestringToKML($geometry, $type = false) global() argument
331 polygonToKML($geometry) global() argument
350 collectionToKML($geometry) global() argument
[all...]
H A DTWKB.php31 * "Tiny Well-known Binary is is a multi-purpose format for serializing vector geometry data into a byte buffer,
36 * - reading and writing all geometry types (1-7)
76 * Read TWKB into geometry objects
97 $geometry = $this->getGeometry();
101 return $geometry;
172 $geometry = $this->getPoint($options);
175 $geometry = $this->getLineString($options);
178 $geometry = $this->getPolygon($options);
181 $geometry = $this->getMulti('Point', $options);
184 $geometry
334 write(Geometry $geometry, $writeAsHex = false, $decimalDigitsXY = null, $decimalDigitsZ = null, $decimalDigitsM = null, $includeSizes = false, $includeBoundingBoxes = false) global() argument
363 writeGeometry($geometry) global() argument
458 writePoint($geometry) global() argument
483 writeLineString($geometry) global() argument
496 writePolygon($geometry) global() argument
509 writeMulti($geometry) global() argument
[all...]
H A DWKB.php74 * Read WKB into geometry objects
90 throw new \Exception('Cannot read empty WKB geometry. Found ' . gettype($wkb));
95 $geometry = $this->getGeometry();
99 return $geometry;
145 $geometry = null;
148 $geometry = $this->getPoint();
151 $geometry = $this->getLineString();
154 $geometry = $this->getPolygon();
157 $geometry = $this->getMulti('Point');
160 $geometry
273 write(Geometry $geometry, $writeAsHex = false, $bigEndian = false) global() argument
287 writeGeometry($geometry) global() argument
385 writeMulti($geometry) global() argument
403 writeType($geometry, $writeSRID = false) global() argument
[all...]
H A DWKT.php27 * Determines if the given typeString is a valid WKT geometry type
30 * @return string|bool The geometry type if found or false
43 * Read WKT string into geometry objects
79 if ($geometry = $this->parseTypeAndGetData($wkt)) {
80 if ($geometry && $srid) {
81 $geometry->setSRID($srid);
83 return $geometry;
96 // geometry type is the first word
255 $geometry = $this->parseTypeAndGetData(trim(substr($dataString, 0, $cutPosition)));
256 $geometries[] = $geometry;
271 write(Geometry $geometry) global() argument
311 extractData($geometry) global() argument
[all...]

1234