Searched refs:xSize (Results 1 – 2 of 2) sorted by relevance
| /plugin/diagramsnet/lib/shapes/ |
| D | mxSysML.js | 184 …var xSize = parseInt(mxUtils.getValue(this.style, mxShapeSysMLPackage.prototype.cst.LABEL_X, '90')… 187 xSize = Math.min(xSize, w); 189 if (xSize > ySize) 193 c.lineTo(xSize - ySize * 0.5, ySize); 194 c.lineTo(xSize, ySize * 0.5); 195 c.lineTo(xSize, 0); 268 …var xSize = parseInt(mxUtils.getValue(this.style, mxShapeSysMLPackage2.prototype.cst.LABEL_X, '90'… 271 xSize = Math.min(xSize, w); 273 if (xSize > ySize) 277 c.lineTo(xSize - ySize * 0.5, ySize); [all …]
|
| /plugin/statdisplay/pchart/ |
| D | GDCanvas.php | 6 public function __construct($xSize, $ySize, $transparent=true) { argument 7 $this->picture = imagecreatetruecolor($xSize, $ySize); 10 imagefilledrectangle($this->picture, 0, 0, $xSize, $ySize, $C_White);
|