/plugin/dw2pdf/vendor/mpdf/mpdf/src/ |
D | Gradient.php | 155 …public function Gradient($x, $y, $w, $h, $type, $stops = [], $colorspace = 'RGB', $coords = '', $e… argument 178 if ($coords[0] !== false && preg_match('/([0-9.]+(px|em|ex|pc|pt|cm|mm|in))/i', $coords[0], $m)) { 181 $coords[0] = $tmp / $w; 185 if ($coords[1] !== false && preg_match('/([0-9.]+(px|em|ex|pc|pt|cm|mm|in))/i', $coords[1], $m)) { 188 $coords[1] = 1 - ($tmp / $h); 193 $angle = (isset($coords[4]) ? $coords[4] : false); 194 $repeat = (isset($coords[5]) ? $coords[5] : false); 196 …if ($coords[0] !== false && $coords[1] !== false && $coords[2] !== false && $coords[3] !== false) { 198 …} elseif ($angle !== false && $coords[0] !== false && $coords[1] !== false && $coords[2] === false… 203 $coords[3] = $coords[1]; [all …]
|
/plugin/imagemapping/ |
D | ImageMapHandler.php | 112 $coords = explode(',', $match[2]); 113 if (count($coords) == 3) { 115 } elseif (count($coords) == 4) { 117 } elseif (count($coords) >= 6) { 122 $coords = array_map('trim', $coords); 125 $coords = join(',', $coords); 126 $coords = trim($coords); 129 [DOKU_LEXER_MATCHED, 'area', $shape, $coords, $type, $title, $url, $wiki],
|
D | ImageMappingEditor.js | 220 let coords = this.coordinates; 222 coords = [ 230 for (let i = 0; i < coords.length; i += 2) { 233 handle.setAttribute('cx', coords[i]); 234 handle.setAttribute('cy', coords[i + 1]); 342 self.drawPolygon(svg, self.coords); 409 let coords = ''; 411 coords = '@' + this.coordinates.join(','); 416 this.header + this.syntax + coords + this.footer,
|
D | syntax.php | 143 @list($state, $match, $shape, $coords, $type, $title, $url, $wiki) = $data; 208 $renderer->doc .= ' shape="' . $shape . '" coords="' . $coords . '"/>';
|
D | jquery.imagemapster.js | 8 …coords(null,a);switch(t.shape){case"rect":case"rectangle":e.rect(n[0],n[1],n[2]-n[0],n[3]-n[1]);br… function
|
/plugin/panoview/ |
D | script.js | 578 notifyViewerMoved: function (coords) { argument 579 if (typeof coords == 'undefined') { 580 coords = { 'x': 0, 'y': 0 }; variable 586 this.x + (coords.x - this.mark.x), 587 this.y + (coords.y - this.mark.y) 610 var coords = { 'x': Math.floor(this.width / 2), 'y': Math.floor(this.height / 2) }; variable 613 'x': (coords.x - this.x), 614 'y': (coords.y - this.y) 622 this.x = coords.x - after.x; 623 this.y = coords.y - after.y; [all …]
|
/plugin/html2pdf/html2pdf/html2ps/ |
D | path.php | 82 $coords = $this->getPointArray(); 86 $transform->apply($coords[$i*2], $coords[$i*2+1]); 89 imagefilledpolygon($image, $coords, $size, $color); 93 $coords = $this->getPointArray(); 97 $transform->apply($coords[$i*2], $coords[$i*2+1]); 100 imagepolygon($image, $coords, $size, $color);
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/ |
D | Wmf.php | 171 $coords = unpack('s' . ($size - 3), $parms); 172 $numpoints = $coords[1]; 174 $px = $coords[2 * $i]; 175 $py = $coords[2 * $i + 1]; 208 $coords = unpack('s' . ($size - 3), $parms); 209 $numpolygons = $coords[1]; 212 $numpoints = $coords[$j + 1]; 214 $px = $coords[2 * $i + $adjustment]; 215 $py = $coords[2 * $i + 1 + $adjustment];
|
/plugin/godiag/ |
D | syntax.php | 410 $coords=$this->get_coords($bx, $by); 411 …$this->circ($im, $coords[0], $coords[1], $this->style['hoshi_radius'], $this->style['line_acolor']… 415 $coords=$this->get_coords($bx, $by); 416 …$this->circ($im, $coords[0], $coords[1], $this->style['stone_radius'], $this->style['white_rim_aco… 417 …$this->circ($im, $coords[0], $coords[1], $this->style['stone_radius']-1, $this->style['white_acolo… 421 $coords=$this->get_coords($bx, $by); 422 …$this->circ($im, $coords[0], $coords[1], $this->style['stone_radius'], $this->style['black_acolor'… 426 $coords=$this->get_coords($bx, $by); 428 …$this->circ($im, $coords[0], $coords[1], $this->style['mark_radius'], $this->style['mark_acolor']); 429 …$this->circ($im, $coords[0], $coords[1], $this->style['mark_radius']-2, $this->style['white_acolor… [all …]
|
/plugin/captcha/ |
D | EasySVG.php | 409 preg_match_all('/\-?[0-9\.]+/', $instruction, $coords); 410 $coords = $coords[0]; 412 if (empty($coords)) { 417 while (count($coords) > 0) { 430 $x = (float) array_shift($coords); 440 $y = (float) array_shift($coords); 447 $x = (float) array_shift($coords); 448 $y = (float) array_shift($coords); 455 $x = (float) array_shift($coords); 456 $y = (float) array_shift($coords); [all …]
|
/plugin/popupviewer/syntax/ |
D | viewer.php | 188 $coords = explode(',',$match[2]); 189 if (count($coords) == 3) { 191 } elseif (count($coords) == 4) { 193 } elseif (count($coords) >= 6) { 199 $coords = array_map('trim', $coords); 201 …e, $w, $h, $orig, $close, array('shape' => $shape, 'coords' => join(',',$coords))), DOKU_LEXER_MAT…
|
/plugin/imagemap/ |
D | syntax.php | 115 @list($state,$match,$shape,$coords,$type,$title,$url,$extra) = $data; 185 $renderer->doc .= ' shape="'.$shape.'" coords="'.$coords.'" />'; 283 $coords = explode(',',$match[2]); 284 if (count($coords) == 3) { 286 } elseif (count($coords) == 4) { 288 } elseif (count($coords) >= 6) { 293 $coords = array_map('trim', $coords); 295 $this->_addPluginCall(array(DOKU_LEXER_MATCHED, 'area', $shape, join(',',$coords),
|
/plugin/weiqi/ |
D | weiqi_parser.php | 180 if ($coords) { 195 …if ($coords) $wout .= '<td>'.$this->img('images/blank',' ',$w1,$w2).'</td>';// blank for left coor… 199 …if ($coords) $wout .= '<td>'.$this->img('images/blank',' ',$w1,$w2).'</td>';// blank for right coo… 210 …if ($coords) $wout .= '<td>'.$this->img($w1.'/c'.$line_number, $line_number).'</td>';// left coord… 218 …if ($coords) $wout .= '<td>'.$this->img($w1.'/c'.$line_number, $line_number).'</td>';// left coord… 223 …if ($coords) $wout .= '<td>'.$this->img('images/blank',' ',$w1,$w2).'</td>';// blank for left coor… 227 …if ($coords) $wout .= '<td>'.$this->img('images/blank',' ',$w1,$w2).'</td>';// blank for right coo… 230 if ($coords) {
|
/plugin/imapmarkers/ |
D | jquery.imagemapster.js | 1409 c = mapArea.coords(null, offset); 1586 c = mapArea.coords(); 2963 if (!area.coords) { 3333 coords: function (offset) { method in m.AreaData 3334 var coords = []; 3336 coords = coords.concat(el.coords(offset)); 3338 return coords; 3474 $.each(u.split(areaEl.coords), function (_, el) { 3490 coords: function (offset) { method in m.MapArea 3540 coords = []; [all …]
|
D | script.js | 40 function calc_marker_pos(coords) { argument 41 let split_coords = coords.split(","); 171 let coords = found_area.attr("coords"); 172 let xy = _g.calc_marker_pos(coords); 409 let coords = data['area'].attr("coords"); 410 let xy = _g.calc_marker_pos(coords);
|
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/ |
D | dhtmlxgantt_drag_timeline.js | 163 this._countNewScrollPosition = function (coords) { argument 165 var shiftX = _this._startPoint.x - coords.x; 166 var shiftY = _this._startPoint.y - coords.y; 181 this._setScrollPosition = function (timeline, coords) { argument 183 gantt.$ui.getView(timeline.$config.scrollX).scroll(coords.x); 184 gantt.$ui.getView(timeline.$config.scrollY).scroll(coords.y);
|
/plugin/advrack/ |
D | jquery.qtip.js | 2218 _drawCoords: function(context, coords) { argument 2220 context.moveTo(coords[0], coords[1]); 2221 context.lineTo(coords[2], coords[3]); 2222 context.lineTo(coords[4], coords[5]); 2256 coords, bigCoords, translate, newSize, border, BACKING_STORE_RATIO; 2329 coords = this._calculateTip(mimic, curSize, SCALE); 2343 this._drawCoords(context, coords); 2351 coords = this._calculateTip(mimic); property 2354 coords = 'm' + coords[0] + ',' + coords[1] + ' l' + coords[2] + 2355 ',' + coords[3] + ' ' + coords[4] + ',' + coords[5] + ' xe'; [all …]
|
/plugin/fuzzysearch/ |
D | editor.js | 102 const coords = getCaretCoordinates(element, cursorPos); 104 const cursorTop = elementRect.top + scrollTop + coords.top; 105 const cursorLeft = elementRect.left + scrollLeft + coords.left;
|
/plugin/edittable/lib/ |
D | handsontable.full.js | 14703 setRangeStart: function setRangeStart(coords, keepEditorOpened) { 14704 instance.runHooks('beforeSetRangeStart', coords); 14705 priv.selRange = new _src.CellRange(coords, coords, coords); 14706 selection.setRangeEnd(coords, null, keepEditorOpened); 14716 setRangeStartOnly: function setRangeStartOnly(coords) { 14717 instance.runHooks('beforeSetRangeStartOnly', coords); 14718 priv.selRange = new _src.CellRange(coords, coords, coords); 14729 setRangeEnd: function setRangeEnd(coords, scrollToCell, keepEditorOpened) { 14745 instance.runHooks('beforeSetRangeEnd', coords); 14748 newRangeCoords.row = coords.row < 0 ? firstVisibleRow : coords.row; [all …]
|
/plugin/zwidoku/files/ |
H A D | js.js | 1 …coords,keepEditorOpened){instance.runHooks('beforeSetRangeStart',coords);priv.selRange=new _src.Ce…
|
/plugin/edittable/script/ |
D | editor.js | 547 beforePaste: function (pasteData, coords) { argument 548 var startRow = coords[0].startRow; 549 var startCol = coords[0].startCol;
|
/plugin/amcharts/assets/amcharts/plugins/export/libs/fabric.js/ |
D | fabric.js | 989 fabric.util.drawArc = function(ctx, fx, fy, coords) { argument 990 var rx = coords[0], 991 ry = coords[1], 992 rot = coords[2], 993 large = coords[3], 994 sweep = coords[4], 995 tx = coords[5], 996 ty = coords[6], 4961 var coords = { }; 4966 coords = { variable [all …]
|
D | fabric.min.js | 1 …Arc=function(ctx,fx,fy,coords){var rx=coords[0],ry=coords[1],rot=coords[2],large=coords[3],sweep=c… argument 4 …coords={};this.id=fabric.Object.__uid++;this.type=options.type||"linear";coords={x1:options.coords… property 6 …radient.coords={x1:options.x1,y1:options.y1,x2:options.x2,y2:options.y2};if(options.r1||options.r2… 8 …coords=this.getCenterPoint(),wh=new fabric.Point(currentWidth,currentHeight),_tl=new fabric.Point(… 9 …coords=[],currentPath,parsed,re=/([-+]?((\d+\.\d+)|((\d+)|(\.\d+)))(?:e[-+]?\d+)?)/gi,match,coords…
|
/plugin/jmol2/jmol/ |
D | JmolAppletSigned0_ShapeSpecial.jar | ... [] atoms
javax.vecmath.Point3f[] coords
org.jmol.modelset.Bond bond
static final ... |
D | JmolApplet0_ShapeSpecial.jar | ... [] atoms
javax.vecmath.Point3f[] coords
org.jmol.modelset.Bond bond
static final ... |