Home
last modified time | relevance | path

Searched refs:bounds (Results 1 – 25 of 191) sorted by relevance

12345678

/plugin/diagramsnet/lib/shapes/
DmxArrows.js12 function mxShapeArrows2Arrow(bounds, fill, stroke, strokewidth) argument
15 this.bounds = bounds;
150 var handles = [Graph.createHandle(state, ['dx', 'dy'], function(bounds)
152 …var dx = Math.max(0, Math.min(bounds.width, parseFloat(mxUtils.getValue(this.state.style, 'dx', th…
155 return new mxPoint(bounds.x + bounds.width - dx, bounds.y + dy * bounds.height / 2);
156 }, function(bounds, pt)
158 …00 * Math.max(0, Math.min(bounds.width - parseFloat(mxUtils.getValue(this.state.style, 'notch', th…
159 …this.state.style['dy'] = Math.round(100 * Math.max(0, Math.min(1, (((pt.y - bounds.y) / bounds.hei…
162 var handle2 = Graph.createHandle(state, ['notch'], function(bounds) argument
164 …var notch = Math.max(0, Math.min(bounds.width, parseFloat(mxUtils.getValue(this.state.style, 'notc…
[all …]
DmxBasic.js11 function mxShapeBasicCross(bounds, fill, stroke, strokewidth) argument
14 this.bounds = bounds;
62 var handles = [Graph.createHandle(state, ['dx'], function(bounds)
64 …var dx = Math.max(0, Math.min(bounds.width / 2, bounds.width / 2, parseFloat(mxUtils.getValue(this…
66 return new mxPoint(bounds.x + bounds.width / 2 + dx, bounds.y + bounds.height / 2 - dx);
67 }, function(bounds, pt)
69 …'dx'] = Math.round(100 * Math.max(0, Math.min(bounds.height / 2, bounds.width / 2, pt.x - bounds.x…
81 function mxShapeBasicRectCallout(bounds, fill, stroke, strokewidth) argument
84 this.bounds = bounds;
142 var handles = [Graph.createHandle(state, ['dx', 'dy'], function(bounds)
[all …]
DmxInfographic.js11 function mxShapeInfographicNumEntryVert(bounds, fill, stroke, strokewidth) argument
14 this.bounds = bounds;
65 var handles = [Graph.createHandle(state, ['dy'], function(bounds)
67 …var dy = Math.max(0, Math.min(bounds.width, bounds.width, parseFloat(mxUtils.getValue(this.state.s…
69 return new mxPoint(bounds.x + bounds.width / 2, bounds.y + dy);
70 }, function(bounds, pt)
72 …te.style['dy'] = Math.round(100 * Math.max(0, Math.min(bounds.height, bounds.width, pt.y - bounds.…
103 function mxShapeInfographicBendingArch(bounds, fill, stroke, strokewidth) argument
106 this.bounds = bounds;
189 var handles = [Graph.createHandle(state, ['startAngle'], function(bounds)
[all …]
DmxFloorplan.js12 function mxFloorplanWall(bounds, fill, stroke, strokewidth) argument
15 this.bounds = bounds;
61 function mxFloorplanWallCorner(bounds, fill, stroke, strokewidth) argument
64 this.bounds = bounds;
118 function mxFloorplanWallU(bounds, fill, stroke, strokewidth) argument
121 this.bounds = bounds;
177 function mxFloorplanRoom(bounds, fill, stroke, strokewidth) argument
180 this.bounds = bounds;
237 function mxFloorplanWindow(bounds, fill, stroke, strokewidth) argument
240 this.bounds = bounds;
[all …]
DmxGmdl.js12 function mxShapeGmdlPlayer(bounds, fill, stroke, strokewidth) argument
15 this.bounds = bounds;
77 function mxShapeGmdlSwitch(bounds, fill, stroke, strokewidth) argument
80 this.bounds = bounds;
172 function mxShapeGmdlMarginRect(bounds, fill, stroke, strokewidth) argument
175 this.bounds = bounds;
244 function mxShapeGmdlSliderNormal(bounds, fill, stroke, strokewidth) argument
247 this.bounds = bounds;
301 function mxShapeGmdlSlider2(bounds, fill, stroke, strokewidth) argument
304 this.bounds = bounds;
[all …]
DmxAndroid.js12 function mxShapeAndroidTabBar(bounds, fill, stroke, strokewidth) argument
15 this.bounds = bounds;
175 function mxShapeAndroidPhone(bounds, fill, stroke, strokewidth) argument
178 this.bounds = bounds;
231 function mxShapeAndroidStatusBar(bounds, fill, stroke, strokewidth) argument
234 this.bounds = bounds;
328 function mxShapeAndroidCheckboxGroup(bounds, fill, stroke, strokewidth) argument
331 this.bounds = bounds;
450 function mxShapeAndroidRadioGroup(bounds, fill, stroke, strokewidth) argument
453 this.bounds = bounds;
[all …]
DmxFlowchart.js11 function mxShapeFlowchartDocument2(bounds, fill, stroke, strokewidth) argument
14 this.bounds = bounds;
74 var handles = [Graph.createHandle(state, ['size'], function(bounds)
78 return new mxPoint(bounds.x + 3 * bounds.width / 4, bounds.y + (1 - size) * bounds.height);
80 }, function(bounds, pt)
82 …this.state.style['size'] = Math.max(0, Math.min(1, (bounds.y + bounds.height - pt.y) / bounds.heig…
DmxLeanMap.js12 function mxLeanBoatShipment(bounds, fill, stroke, strokewidth) argument
15 this.bounds = bounds;
66 function mxLeanSafetyStock(bounds, fill, stroke, strokewidth) argument
69 this.bounds = bounds;
137 function mxLeanDataBox(bounds, fill, stroke, strokewidth) argument
140 this.bounds = bounds;
216 function mxLeanCustomerSupplier(bounds, fill, stroke, strokewidth) argument
219 this.bounds = bounds;
283 function mxLeanDedicatedProcess(bounds, fill, stroke, strokewidth) argument
286 this.bounds = bounds;
[all …]
DmxBootstrap.js12 function mxShapeBootstrapRRect(bounds, fill, stroke, strokewidth) argument
15 this.bounds = bounds;
57 function mxShapeBootstrapTopButton(bounds, fill, stroke, strokewidth) argument
60 this.bounds = bounds;
110 function mxShapeBootstrapBottomButton(bounds, fill, stroke, strokewidth) argument
113 this.bounds = bounds;
163 function mxShapeBootstrapRightButton(bounds, fill, stroke, strokewidth) argument
166 this.bounds = bounds;
216 function mxShapeBootstrapLeftButton(bounds, fill, stroke, strokewidth) argument
219 this.bounds = bounds;
[all …]
DmxSysML.js116 function mxShapeSysMLPackage(bounds, fill, stroke, strokewidth) argument
119 this.bounds = bounds;
204 var handles = [Graph.createHandle(state, ['labelX'], function(bounds)
206 …var labelX = Math.max(0, Math.min(bounds.width, parseFloat(mxUtils.getValue(this.state.style, 'lab…
208 return new mxPoint(bounds.x + labelX, bounds.y + 10);
209 }, function(bounds, pt)
211 …this.state.style['labelX'] = Math.round(100 * Math.max(0, Math.min(bounds.width, pt.x - bounds.x))…
224 function mxShapeSysMLPackage2(bounds, fill, stroke, strokewidth) argument
227 this.bounds = bounds;
290 var handles = [Graph.createHandle(state, ['labelX'], function(bounds)
[all …]
DmxAWS4.js12 function mxShapeAws4ProductIcon(bounds, fill, stroke, strokewidth) argument
15 this.bounds = bounds;
103 function mxShapeAws4ResourceIcon(bounds, fill, stroke, strokewidth) argument
106 this.bounds = bounds;
161 function mxShapeAws4Group(bounds, fill, stroke, strokewidth) argument
164 this.bounds = bounds;
236 function mxShapeAws4GroupCenter(bounds, fill, stroke, strokewidth) argument
239 this.bounds = bounds;
358 function mxShapeAws4Group2(bounds, fill, stroke, strokewidth) argument
361 this.bounds = bounds;
DmxElectrical.js12 function mxShapeElectricalTestPoint(bounds, fill, stroke, strokewidth) argument
15 this.bounds = bounds;
69 function mxShapeElectricalStraightBus(bounds, fill, stroke, strokewidth) argument
72 this.bounds = bounds;
134 function mxShapeElectricalTwoLineBusElbow(bounds, fill, stroke, strokewidth) argument
137 this.bounds = bounds;
190 var handles = [Graph.createHandle(state, ['notch'], function(bounds)
192 …var notch = Math.max(Math.min(bounds.height, parseFloat(mxUtils.getValue(this.state.style, 'notch'…
194 return new mxPoint(bounds.x + bounds.width / 4, bounds.y + bounds.height - notch);
195 }, function(bounds, pt)
[all …]
DmxCabinets.js12 function mxCabinetsCabinet(bounds, fill, stroke, strokewidth) argument
15 this.bounds = bounds;
89 function mxCabinetsCoverPlate(bounds, fill, stroke, strokewidth) argument
92 this.bounds = bounds;
150 function mxCabinetsDimension(bounds, fill, stroke, strokewidth) argument
153 this.bounds = bounds;
207 function mxCabinetsDimensionBottom(bounds, fill, stroke, strokewidth) argument
210 this.bounds = bounds;
/plugin/diagramsnet/lib/shapes/ios7/
DmxIOS7Ui.js49 function mxShapeIOS7AppBar(bounds, fill, stroke, strokewidth) argument
52 this.bounds = bounds;
154 function mxShapeIOS7OnOffButton(bounds, fill, stroke, strokewidth) argument
157 this.bounds = bounds;
233 function mxShapeIOS7Slider(bounds, fill, stroke, strokewidth) argument
236 this.bounds = bounds;
288 var handles = [Graph.createHandle(state, ['barPos'], function(bounds)
292 return new mxPoint(bounds.x + barPos / 100 * bounds.width, bounds.y + bounds.height / 2);
293 }, function(bounds, pt)
295 …'barPos'] = Math.round(1000 * Math.max(0, Math.min(100, (pt.x - bounds.x) * 100 / bounds.width))) …
[all …]
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
DGoogleGeocode.php41 * @param array|bool|Geometry $bounds Limit the search area to within this region.
49 …public function read($address, $apiKey = null, $returnType = 'point', $bounds = false, $returnMult… argument
55 if (gettype($bounds) == 'object') {
56 $bounds = $bounds->getBBox();
58 if (gettype($bounds) == 'array') {
59 …$boundsString = '&bounds=' . $bounds['miny'] . ',' . $bounds['minx'] . '|' . $bounds['maxy'] . ','…
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->bounds->northeast->lng;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/
DExplicit.php23 public $bounds; variable in Google\\Service\\Monitoring\\Explicit
25 public function setBounds($bounds) argument
27 $this->bounds = $bounds;
31 return $this->bounds;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Logging/
DExplicit.php23 public $bounds; variable in Google\\Service\\Logging\\Explicit
25 public function setBounds($bounds) argument
27 $this->bounds = $bounds;
31 return $this->bounds;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Networkconnectivity/
DExplicitBuckets.php23 public $bounds; variable in Google\\Service\\Networkconnectivity\\ExplicitBuckets
25 public function setBounds($bounds) argument
27 $this->bounds = $bounds;
31 return $this->bounds;
/plugin/diagramsnet/lib/plugins/webcola/
DmxWebColaLayout.js116 var bounds = view.getBoundingBox(state, true);
196 var bounds = model.getGeometry(groupCell).clone();
197 bounds.x = minX;
198 bounds.y = minY;
199 bounds.width = width;
200 bounds.height = height;
201 return bounds;
261 var x = node.bounds.x;
262 var y = node.bounds.y;
287 var bounds = view.getBoundingBox(state, true);
[all …]
/plugin/diagramsnet/lib/shapes/mockup/
DmxMockupMisc.js12 function mxShapeMockupPlaybackControls(bounds, fill, stroke, strokewidth) argument
15 this.bounds = bounds;
175 function mxShapeMockupProgressBar(bounds, fill, stroke, strokewidth) argument
178 this.bounds = bounds;
240 var handles = [Graph.createHandle(state, ['barPos'], function(bounds)
244 return new mxPoint(bounds.x + barPos * bounds.width / 100, bounds.y + bounds.height * 0.5);
245 }, function(bounds, pt)
247 …'barPos'] = Math.round(1000 * Math.max(0, Math.min(100, (pt.x - bounds.x) * 100 / bounds.width))) …
259 function mxShapeMockupShoppingCart(bounds, fill, stroke, strokewidth) argument
262 this.bounds = bounds;
[all …]
DmxMockupMarkup.js12 function mxShapeMockupCurlyBrace(bounds, fill, stroke, strokewidth) argument
15 this.bounds = bounds;
64 function mxShapeMockupLine(bounds, fill, stroke, strokewidth) argument
67 this.bounds = bounds;
104 function mxShapeMockupScratchOut(bounds, fill, stroke, strokewidth) argument
107 this.bounds = bounds;
157 function mxShapeMockupRedX(bounds, fill, stroke, strokewidth) argument
160 this.bounds = bounds;
/plugin/openlayersmapoverlays/lib/
Dlayers.js59bounds){bounds=this.adjustBounds(bounds);var projWords=this.projection.getCode().split(":");var sr… argument
/plugin/diagramsnet/lib/shapes/rack/
DmxRack.js16 function mxRackContainer(bounds, fill, stroke, strokewidth) argument
19 this.bounds = bounds;
151 function mxRackPlate(bounds, fill, stroke, strokewidth) argument
154 this.bounds = bounds;
217 function mxRackHorCableDuct(bounds, fill, stroke, strokewidth) argument
220 this.bounds = bounds;
277 function mxRackHorRoutingBank(bounds, fill, stroke, strokewidth) argument
280 this.bounds = bounds;
341 function mxRackNeatPatch(bounds, fill, stroke, strokewidth) argument
344 this.bounds = bounds;
[all …]
/plugin/diagramsnet/lib/plugins/
DrackF5.js11 function mxRackF5BigIp1600(bounds, fill, stroke, strokewidth) argument
14 this.bounds = bounds;
89 function mxRackF5BigIp2x00(bounds, fill, stroke, strokewidth) argument
92 this.bounds = bounds;
167 function mxRackF5BigIp3600(bounds, fill, stroke, strokewidth) argument
170 this.bounds = bounds;
245 function mxRackF5BigIp3900(bounds, fill, stroke, strokewidth) argument
248 this.bounds = bounds;
323 function mxRackF5BigIp4x00(bounds, fill, stroke, strokewidth) argument
326 this.bounds = bounds;
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
DDateHistogram.php123 $bounds = [];
124 $bounds['min'] = $min;
125 $bounds['max'] = $max;
128 $bounds['min'] = $max;
129 $bounds['max'] = $min;
132 return $this->setParam('extended_bounds', $bounds);

12345678