Home
last modified time | relevance | path

Searched refs:geo (Results 1 – 25 of 60) sorted by relevance

123

/plugin/diagramsnet/lib/js/diagramly/
DDevTools.js13 var geo = this.getCellGeometry(cell);
17 if (geo != null)
19 if (geo.sourcePoint != null)
21 … tip += 'source=' + parseFloat(geo.sourcePoint.x) + ',' + parseFloat(geo.sourcePoint.y) + '<br>';
24 if (geo.targetPoint != null)
26 … tip += 'target=' + parseFloat(geo.targetPoint.x) + ',' + parseFloat(geo.targetPoint.y) + '<br>';
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) + ';';
[all …]
/plugin/diagramsnet/lib/plugins/
DedgeConnection.js9 var geo = this.graph.getCellGeometry(source);
11 while (geo != null && geo.relative)
14 geo = this.graph.getCellGeometry(source);
19 var geo = this.graph.getModel().getGeometry(clone);
21 if (geo != null)
24 geo.x = this.graph.snap(point.x - geo.width / 2) - this.graph.panDx / this.graph.view.scale;
25 geo.y = this.graph.snap(point.y - geo.height / 2) - this.graph.panDy / this.graph.view.scale;
39 geo.x = sourceState.x;
44 geo.y = sourceState.y;
Dexplore.js218 var geo = graph.getModel().getGeometry(graph.rootCell);
220 if (geo != null)
222 geo = geo.clone();
224 geo.x = cx - geo.width / 2;
225 geo.y = cy - geo.height / 3;
226 graph.getModel().setGeometry(graph.rootCell, geo);
247 var geo = graph.getModel().getGeometry(tmp);
249 if (geo != null)
251 geo.x = cx - geo.width / 2;
252 geo.y = cy - geo.height / 2;
[all …]
Dvoice.js921 var geo = graph.getCellGeometry(cell);
923 if (graph.getModel().isVertex(cell) && geo != null)
925 geo = geo.clone();
929 geo.height = graph.snap(Math.round(geo.height * 0.5));
934 geo.width = graph.snap(Math.round(geo.width * 0.5));
937 if (geo.width > graph.tolerance && geo.height > graph.tolerance)
939 graph.getModel().setGeometry(cell, geo);
957 var geo = graph.getCellGeometry(cell);
959 if (graph.getModel().isVertex(cell) && geo != null)
961 geo = geo.clone();
[all …]
/plugin/diagramsnet/lib/js/diagramly/vsdx/
DmxVsdxCanvas2D.js240 var geo = this.xmGeo;
241 x = ((x - geo.x + s.dx) * s.scale);
242 y = ((geo.height - y + geo.y - s.dy) * s.scale);
276 var geo = this.xmGeo;
277 var gh = geo.height * s.scale;
278 var gw = geo.width * s.scale;
279 x = (x - geo.x + s.dx) * s.scale;
280 y = gh + (-y + geo.y - s.dy) * s.scale;
313 var geo = this.xmGeo;
315 x = (x - geo.x + s.dx) * s.scale;
[all …]
DVsdxExport.js337 function createShape(id, geo, layerIndex, xmlDoc, parentHeight, isChild) argument
347 var hw = geo.width/2, hh = geo.height/2;
349 …shape.appendChild(createCellElemScaled("PinX", geo.x + hw + (isChild? 0 : vsdxCanvas.shiftX), xmlD…
350 …shape.appendChild(createCellElemScaled("PinY", parentHeight - geo.y - hh - (isChild? 0 : vsdxCanva…
351 shape.appendChild(createCellElemScaled("Width", geo.width, xmlDoc));
352 shape.appendChild(createCellElemScaled("Height", geo.height, xmlDoc));
497 var geo = cell.geometry, origGeo = geo;
499 if (geo != null)
504 if (geo.relative && parentGeo)
506 origGeo = geo.clone();
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dns/
DRRSetRoutingPolicy.php34 public function setGeo(RRSetRoutingPolicyGeoPolicy $geo) argument
36 $this->geo = $geo;
43 return $this->geo;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Books/
DGeolayerdata.php48 public function setGeo(GeolayerdataGeo $geo) argument
50 $this->geo = $geo;
57 return $this->geo;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Localservices/
DGoogleAdsHomeservicesLocalservicesV1DetailedLeadReport.php49 public $geo; variable in Google\\Service\\Localservices\\GoogleAdsHomeservicesLocalservicesV1DetailedLeadReport
175 public function setGeo($geo) argument
177 $this->geo = $geo;
184 return $this->geo;
/plugin/jdraw/src/com/mxgraph/examples/swing/
DPort.java37 mxGeometry geo = getCellGeometry(cell); in Port()
39 return (geo != null) ? geo.isRelative() : false; in Port()
74 mxGeometry geo = graph.getModel().getGeometry(v1); in Port() local
76 geo.setAlternateBounds(new mxRectangle(20, 20, 100, 50)); in Port()
DGraphEditor.java618 mxGeometry geo = getModel().getGeometry(cell); in getToolTipForCell() local
625 if (geo != null) in getToolTipForCell()
627 List<mxPoint> points = geo.getPoints(); in getToolTipForCell()
668 if (geo != null) in getToolTipForCell()
670 tip += "x=" + numberFormat.format(geo.getX()) + ",y=" in getToolTipForCell()
671 + numberFormat.format(geo.getY()) + ",width=" in getToolTipForCell()
672 + numberFormat.format(geo.getWidth()) + ",height=" in getToolTipForCell()
673 + numberFormat.format(geo.getHeight()); in getToolTipForCell()
DGraphEditor.java.bak489 mxGeometry geo = getModel().getGeometry(cell);
496 if (geo != null)
498 List<mxPoint> points = geo.getPoints();
537 tip += "geo=[";
539 if (geo != null)
541 tip += "x=" + numberFormat.format(geo.getX()) + ",y="
542 + numberFormat.format(geo.getY()) + ",width="
543 + numberFormat.format(geo.getWidth()) + ",height="
544 + numberFormat.format(geo.getHeight());
/plugin/diagramsnet/lib/js/grapheditor/
DActions.js220 var geo = graph.getCellGeometry(cells[0]);
222 if (geo != null)
224 bb = geo.getTerminalPoint(true);
302 var geo = graph.getCellGeometry(cell);
304 if (geo != null)
306 ui.copiedSize = new mxRectangle(geo.x, geo.y, geo.width, geo.height);
325 var geo = graph.getCellGeometry(cells[i]);
327 if (geo != null)
329 geo = geo.clone();
330 geo.width = ui.copiedSize.width;
[all …]
DGraph.js375 var geo = this.getCellGeometry(state.cell);
376 var g = (geo.alternateBounds != null) ? geo.alternateBounds : geo;
2449 var geo = this.getCellGeometry(result);
2451 while (geo != null && geo.relative)
2454 geo = this.getCellGeometry(result);
4038 var geo = this.getCellGeometry(realTarget);
4040 if (geo != null)
4046 pt.y -= geo.height / 2;
4050 pt.y += geo.height / 2;
4054 pt.x -= geo.width / 2;
[all …]
DSidebar.js2425 var geo = this.getDropAndConnectGeometry(source, targets[dropCellIndex], direction, targets);
2430 if (geo != null)
2469 var pt = geo.getTerminalPoint(false);
2482 var tempTarget = graph.getCellAt((geo.x + dx + graph.view.translate.x) * graph.view.scale,
2483 … (geo.y + dy + graph.view.translate.y) * graph.view.scale, null, null, null, function(state, x, y)
2501 geo.x -= offset.x - dx;
2502 geo.y -= offset.y - dy;
2508 geo.x += dx;
2509 geo.y += dy;
2522 targets = graph.importCells(targets, (geo.x - (useParent ? dx : 0)),
[all …]
DFormat.js220 var geo = graph.getCellGeometry(cell);
222 if (geo != null)
224 if (geo.width > 0)
228 result.width = geo.width;
230 else if (result.width != geo.width)
240 if (geo.height > 0)
244 result.height = geo.height;
246 else if (result.height != geo.height)
256 if (!geo.relative || geo.offset != null)
258 var x = (geo.relative) ? geo.offset.x : geo.x;
[all …]
/plugin/diagramsnet/lib/js/diagramly/graphml/
DmxGraphMlCodec.js74 var geo = cell.geometry;
76 if (!geo.adjustIt) continue;
83 var ratio = geo.x;
84 var dist = geo.y;
99 geo.x = np.x;
100 geo.y = np.y;
1826 var geo = node.geometry;
1828 if (shape && geo)
1833 var min = Math.min(geo.height, geo.width);
1835 if (min == geo.height) //fix coordinates
[all …]
/plugin/diagramsnet/lib/js/orgchart/
DmxOrgChartLayout.js401 var geo = RPOrgChart.graph.model.cells[boxId].geometry;
402 return new OrgChart.Layout.Size.$ctor1(geo.width, geo.height);
434 var geo = cell.geometry.clone();
435 geo.x = node.State.TopLeft.X + offsetx;
436 geo.y = node.State.TopLeft.Y;
437 graph.model.setGeometry(cell, geo);
562 function pointOnCell(geo, p) argument
564 … return p.x >= geo.x && p.x <= geo.x + geo.width && p.y >= geo.y && p.y <= geo.y + geo.height;
/plugin/geotag/
Dprint.css16 .geo {
29 .geo a:link, .geo a:visited {
/plugin/botmon/
H A Dscript.js314 if (!nv.geo ||nv.geo === '') nv.geo = 'ZZ';
319 if (nv.geo && nv.geo !== '') {
321 nv._country = countryName.of(nv.geo) ?? "Unknown";
559 me.addToCountries(v.geo, v._country, v._type);
1309 if (visitor.geo && visitor.geo !== 'ZZ') {
1310 return (countries.indexOf(visitor.geo) >= 0);
1319 if (visitor.geo && visitor.geo !== 'ZZ') {
1320 return (countries.indexOf(visitor.geo) < 0);
1745 if (data.geo && data.geo !=='') {
1747 'class': 'icon country ctry_' + data.geo.toLowerCase(),
[all …]
/plugin/webdav/vendor/sabre/vobject/resources/schema/
Dxcard.rng107 param-geo = element geo { value-uri }?
180 param-pref, param-type, param-geo, param-tz,
236 property-geo = element geo {
372 | property-fn | property-geo | property-impp | property-key
/plugin/icalevents/vendor/sabre/vobject/resources/schema/
Dxcard.rng107 param-geo = element geo { value-uri }?
180 param-pref, param-type, param-geo, param-tz,
236 property-geo = element geo {
372 | property-fn | property-geo | property-impp | property-key
/plugin/mikioplugin/icons/bootstrap-icons/svg/
Dgeo-alt.svg1 <svg class="bi bi-geo-alt" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns="…
Dgeo.svg1 <svg class="bi bi-geo" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns="http…
/plugin/authgoogle/google/contrib/
DGoogle_ModeratorService.php1004 public $geo; variable in Google_ProfileAttribution
1008 public function setGeo(Google_ProfileAttributionGeo $geo) { argument
1009 $this->geo = $geo;
1012 return $this->geo;
1314 public $geo; variable in Google_Submission
1383 public function setGeo(Google_SubmissionGeo $geo) { argument
1384 $this->geo = $geo;
1387 return $this->geo;

123