Lines Matching refs:geo

132                                     var geo = model.getGeometry(c);
133 if (geo != null) {
134 this.scaleRect(geo, scale);
135 this.scaleRect(geo.alternateBounds, scale);
137 this.scalePoint(geo.sourcePoint, scale);
138 this.scalePoint(geo.targetPoint, scale);
139 this.scalePoint(geo.offset, scale);
140 var points = geo.points;
1142 var geo = cell.geometry;
1144 if (geo != null)
1146 x += geo.x;
1147 y += geo.y;
1290 var geo = label.getGeometry();
1291 geo.x = (0);
1292 geo.y = (0);
1293 geo.relative = (true);
1294 geo.offset = (new mxPoint(-geo.width / 2, -geo.height / 2));
1406 var geo = label.getGeometry();
1407 geo.x = (0);
1408 geo.y = (0);
1409 geo.relative = (true);
1410 geo.offset = (new mxPoint(-geo.width / 2, -geo.height / 2));
1498 var geo = cell.geometry;
1500 if (geo != null)
1502 if (geo.height < 0)
1504 geo.height = Math.abs(geo.height);
1505 geo.y -= geo.height;
1509 if (geo.width < 0)
1511 geo.width = Math.abs(geo.width);
1512 geo.x -= geo.width;
1686 var geo = cell.getGeometry();
1687 geo.x = (0);
1688 geo.y = (0);
1689 var srcP = geo.sourcePoint;
1691 this.transPoint(geo.targetPoint, srcP);
1692 this.transPoint(geo.offset, srcP);
1693 var points = geo.points;
1704 return geo;
1733 var geo = cell.geometry;
1735 if (geo != null && cell.parent.id == 1)
1739 getDimMinMax(geo);
1743 getDimMinMax(geo.sourcePoint);
1744 getDimMinMax(geo.targetPoint);
1745 var points = geo.points;
1761 var geo = cell.geometry;
1763 if (geo != null && cell.parent.id == 1)
1765 geo.x -= minX;
1766 geo.y -= minY;
1770 this.transPoint(geo.sourcePoint, srcP);
1771 this.transPoint(geo.targetPoint, srcP);
1772 this.transPoint(geo.offset, srcP);
1773 var points = geo.points;
2740 … var geo = new com.mxgraph.io.vsdx.mxVsdxGeometry(geoElem, this.parentGeomList);
2741 if (geo.getIndex() < this.geomList.length) {
2742 /* set */ (this.geomList[geo.getIndex()] = geo);
2745 /* add */ (this.geomList.push(geo));
2760 var geo = this.geomList[index125];
2762 if (!geo.isNoShow())
2770 var geo = this.geomList[index126];
2772 if (!(geo.isNoShow() || geo.isNoFill()))
2780 var geo = this.geomList[index127];
2782 if (!(geo.isNoShow() || geo.isNoLine()))
2823 var geo = this.geomList[index128];
2825 if (!geo.isNoShow()) {
2826 var rows = geo.getRows();
2897 var geo = this_2.geomList[index130];
2899 if (withFill === geo.isNoFill())
2901 var str_1 = geo.getPathXML(p, shape);
2903 var geoStyle = this_2.getGeoStyle(geo);
2926 /*private*/ mxVsdxGeometryList.prototype.getGeoStyle = function (geo) { argument
2928 if (!geo.isNoLine() && !geo.isNoFill()) {
2931 else if (!geo.isNoFill()) {
2934 else if (!geo.isNoLine()) {
6534 Utils.rotatedGeometry = function (geo, rotation, cx, cy) { argument
6538 var x = geo.getCenterX() - cx;
6539 var y = geo.getCenterY() - cy;
6542 geo.x = (Math.round(x1 + cx - geo.width / 2));
6543 geo.y = (Math.round(y1 + cy - geo.height / 2));