Home
last modified time | relevance | path

Searched refs:distance (Results 1 – 25 of 108) sorted by relevance

12345

/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DPoint.php255 public function distance($geometry) function in geoPHP\\Geometry\\Point
263 return $this->getGeos()->distance($geometry->getGeos());
273 $distance = null;
275 $checkDistance = $this->distance($component);
282 if ($distance === null || $checkDistance < $distance) {
283 $distance = $checkDistance;
286 return $distance;
291 $distance = null;
293 // As per http://stackoverflow.com/questions/849211/shortest-distance
[all...]
H A DLineString.php94 // Equivalent to $previousPoint->distance($point) but much faster
202 $distance = 0.0;
216 $distance += $degree;
219 return $distance;
477 public function distance($geometry) function in geoPHP\\Geometry\\LineString
482 return $this->getGeos()->distance($geometry->getGeos());
488 return $geometry->distance($this);
491 $distance = null;
499 // Because line-segments are straight, the shortest distance will occur at an endpoint.
501 $checkDistance1 = $seg1->startPoint()->distance(
[all...]
H A DCollection.php332 public function distance($geometry) function in geoPHP\\Geometry\\Collection
337 return $this->getGeos()->distance($geometry->getGeos());
340 $distance = null;
342 $checkDistance = $component->distance($geometry);
349 if ($distance === null) {
350 $distance = $checkDistance;
352 if ($checkDistance < $distance) {
353 $distance = $checkDistance;
356 return $distance;
H A DPolygon.php188 $distance = $centroid->distance($point);
190 if ($distance > $maxDistance) {
191 $maxDistance = $distance;
H A DGeometry.php201 abstract public function distance($geom); function in geoPHP\\Geometry\\Geometry
591 * @param float|int $distance
596 public function buffer($distance) argument
600 return geoPHP::geosToGeometry($this->getGeos()->buffer($distance));
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DGeoDistance.php6 * Geo distance query.
10 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-geo-distance-query.html
22 * @param string $distance Distance
26 public function __construct(string $key, $location, string $distance) argument
30 $this->setDistance($distance);
36 public function setDistance(string $distance): self argument
38 $this->setParam('distance', $distance);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OnDemandScanning/
H A DImageOccurrence.php30 public $distance; variable in Google\\Service\\OnDemandScanning\\ImageOccurrence
53 public function setDistance($distance) argument
55 $this->distance = $distance;
62 return $this->distance;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/
H A DImageOccurrence.php30 public $distance; variable in Google\\Service\\ContainerAnalysis\\ImageOccurrence
53 public function setDistance($distance) argument
55 $this->distance = $distance;
62 return $this->distance;
H A DDerived.php24 public $distance; variable in Google\\Service\\ContainerAnalysis\\Derived
38 public function setDistance($distance) argument
40 $this->distance = $distance;
44 return $this->distance;
/plugin/stlviewer/stlviewer/
H A DOrbitControls.js142 this.panLeft = function ( distance ) { argument
148 panOffset.multiplyScalar( - distance );
155 this.panUp = function ( distance ) { argument
161 panOffset.multiplyScalar( distance );
501 var distance = Math.sqrt( dx * dx + dy * dy );
502 dollyStart.set( 0, distance );
560 var distance = Math.sqrt( dx * dx + dy * dy );
562 dollyEnd.set( 0, distance );
/plugin/photogallery/lightGallery/js/
H A Dlightgallery.js1049 var distance = endCoords - startCoords;
1051 if (Math.abs(distance) > 15) {
1056 this.setTranslate(this.$slide.eq(this.index), distance, 0);
1059 … this.setTranslate($('.lg-prev-slide'), -this.$slide.eq(this.index).width() + distance, 0);
1060 … this.setTranslate($('.lg-next-slide'), this.$slide.eq(this.index).width() + distance, 0);
1064 Plugin.prototype.touchEnd = function(distance) { argument
1077 if ((distance < 0) && (Math.abs(distance) > _this.s.swipeThreshold)) {
1079 } else if ((distance > 0) && (Math.abs(distance) > _this.s.swipeThreshold)) {
1081 } else if (Math.abs(distance) < 5) {
/plugin/sequencediagram/bower_components/js-sequence-diagrams/src/
H A Dtheme.js304 _.each(a.distances, function(distance, b) { argument
307 if (typeof distance == 'undefined') {
312 distance = Math.max(distance, a.width / 2, b.width / 2);
313 b.x = Math.max(b.x, a.x + a.width / 2 + distance - b.width / 2);
/plugin/webcomponent/_test/data/pages/
H A Dnavbar.txt69 [[data_mining:distance|Distance]]
74 [[data_mining:distance|Distance]]
/plugin/combo/action/
H A Dlinkmove.php56 $distance = $now - $lockFileModifiedTimestamp;
57 $lockFileAgeInMinute = ($distance) / 60;
/plugin/s5reloaded/ui/effects_support/
H A Deffects.js665 distance: 20,
668 var distance = parseFloat(options.distance);
675 { x: distance, y: 0, duration: split, afterFinishInternal: function(effect) {
677 { x: -distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) {
679 { x: distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) {
681 { x: -distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) {
683 { x: distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) {
685 { x: -distance, y: 0, duration: split, afterFinishInternal: function(effect) {
/plugin/slider/
H A Djquery.bxslider.js1054 var distance = Math.abs(slider.touch.start.x - slider.touch.end.x);
1055 if(distance >= slider.settings.swipeThreshold){
1061 var distance = 0;
1064 distance = slider.touch.end.x - slider.touch.start.x;
1067 distance = slider.touch.end.y - slider.touch.start.y;
1071 …tings.infiniteLoop && ((slider.active.index == 0 && distance > 0) || (slider.active.last && distan…
1075 if(Math.abs(distance) >= slider.settings.swipeThreshold){
1076 distance < 0 ? el.goToNextSlide() : el.goToPrevSlide();
/plugin/twcheckliste/
H A DREADME.md21 - HR (Dividing line) = Fixed distance
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/
H A DQuery.php148 * distance feature query.
150 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-distance-feature-query.html
192 * geo distance query.
194 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-geo-distance-query.html
198 public function geo_distance(string $key, $location, string $distance): GeoDistance argument
200 return new GeoDistance($key, $location, $distance);
/plugin/authgoogle/google/contrib/
H A DGoogle_ShoppingService.php1262 public $distance; variable in Google_ShoppingModelProductJsonV1Inventories
1292 public function setDistance( $distance) { argument
1293 $this->distance = $distance;
1296 return $this->distance;
/plugin/jorgchart/
H A Djquery.jOrgChart.js35 distance : 40,
/plugin/photogallery/phpThumb/
H A Dphpthumb.filters.php314 public function DropShadow(&$gdimg, $distance, $width, $hexcolor, $angle, $alpha) { argument
318 $distance = ($distance ? $distance : 10);
328 if ($distance <= 0) {
340 $Offset['x'] = cos(deg2rad($angle)) * ($distance + $i);
341 $Offset['y'] = sin(deg2rad($angle)) * ($distance + $i);
/plugin/sequencediagram/bower_components/js-sequence-diagrams/dist/
H A Dsequence-diagram-snap.js1107 _.each(a.distances, function(distance, b) { argument
1110 if (typeof distance == 'undefined') {
1115 distance = Math.max(distance, a.width / 2, b.width / 2);
1116 b.x = Math.max(b.x, a.x + a.width / 2 + distance - b.width / 2);
H A Dsequence-diagram-snap-min.js6 …tion(distance,b){"undefined"!=typeof distance&&(b=actors[b],distance=Math.max(distance,a.width/2,b… argument
H A Dsequence-diagram-raphael.js1107 _.each(a.distances, function(distance, b) { argument
1110 if (typeof distance == 'undefined') {
1115 distance = Math.max(distance, a.width / 2, b.width / 2);
1116 b.x = Math.max(b.x, a.x + a.width / 2 + distance - b.width / 2);
/plugin/diagramsnet/lib/js/diagramly/graphml/
H A DmxGraphMlCodec.js2476 var distance = layout["Distance"];
2485 if (distance)
2487 lGeo.y = parseFloat(distance);
2542 …var angle = parseFloat(layout.angle), distance = parseFloat(layout.distance), distanceToCenter = l…
2553 …Geo.offset = new mxPoint(Math.abs(ratio) < 1? eState.segments[0] * ratio : ratio, sign * distance);
2567 …lGeo.y = ((position == "center"? 0 : distance) + lGeo.height/2 * sign * (Math.abs(dx) > Math.abs(d…

12345