Lines Matching refs:RoughCanvas

808 		function RoughCanvas(canvas, rc, shape)  class
819 this.canvas.begin = mxUtils.bind(this, RoughCanvas.prototype.begin);
822 this.canvas.end = mxUtils.bind(this, RoughCanvas.prototype.end);
825 this.canvas.rect = mxUtils.bind(this, RoughCanvas.prototype.rect);
828 this.canvas.roundrect = mxUtils.bind(this, RoughCanvas.prototype.roundrect);
831 this.canvas.ellipse = mxUtils.bind(this, RoughCanvas.prototype.ellipse);
834 this.canvas.lineTo = mxUtils.bind(this, RoughCanvas.prototype.lineTo);
837 this.canvas.moveTo = mxUtils.bind(this, RoughCanvas.prototype.moveTo);
840 this.canvas.quadTo = mxUtils.bind(this, RoughCanvas.prototype.quadTo);
843 this.canvas.curveTo = mxUtils.bind(this, RoughCanvas.prototype.curveTo);
846 this.canvas.arcTo = mxUtils.bind(this, RoughCanvas.prototype.arcTo);
849 this.canvas.close = mxUtils.bind(this, RoughCanvas.prototype.close);
852 this.canvas.fill = mxUtils.bind(this, RoughCanvas.prototype.fill);
855 this.canvas.stroke = mxUtils.bind(this, RoughCanvas.prototype.stroke);
858 this.canvas.fillAndStroke = mxUtils.bind(this, RoughCanvas.prototype.fillAndStroke);
864 RoughCanvas.prototype.moveOp = 'M';
865 RoughCanvas.prototype.lineOp = 'L';
866 RoughCanvas.prototype.quadOp = 'Q';
867 RoughCanvas.prototype.curveOp = 'C';
868 RoughCanvas.prototype.closeOp = 'Z';
870 RoughCanvas.prototype.getStyle = function(stroke, fill)
947 RoughCanvas.prototype.begin = function()
959 RoughCanvas.prototype.end = function()
971 RoughCanvas.prototype.addOp = function()
993 RoughCanvas.prototype.lineTo = function(endX, endY)
1007 RoughCanvas.prototype.moveTo = function(endX, endY)
1023 RoughCanvas.prototype.close = function()
1035 RoughCanvas.prototype.quadTo = function(x1, y1, x2, y2)
1049 RoughCanvas.prototype.curveTo = function(x1, y1, x2, y2, x3, y3)
1063 RoughCanvas.prototype.arcTo = function(rx, ry, angle, largeArcFlag, sweepFlag, x, y)
1087 RoughCanvas.prototype.rect = function(x, y, w, h)
1100 RoughCanvas.prototype.ellipse = function(x, y, w, h)
1113 RoughCanvas.prototype.roundrect = function(x, y, w, h, dx, dy)
1134 RoughCanvas.prototype.drawPath = function(style)
1172 RoughCanvas.prototype.stroke = function()
1184 RoughCanvas.prototype.fill = function()
1196 RoughCanvas.prototype.fillAndStroke = function()
1208 RoughCanvas.prototype.destroy = function()
1230 return new RoughCanvas(c, Editor.createRoughCanvas(c), this);
1268 if (c.handJiggle != null && c.handJiggle.constructor == RoughCanvas && !this.outline)
1333 if (c.handJiggle != null && c.handJiggle.constructor == RoughCanvas)