Lines Matching refs:c

35 mxShapeAws4ProductIcon.prototype.paintVertexShape = function(c, x, y, w, h)  argument
37 c.translate(x, y);
55 c.setFillColor(strokeColor);
57 c.begin();
58 c.moveTo(0, 0);
59 c.lineTo(w, 0);
60 c.lineTo(w, h);
61 c.lineTo(0, h);
62 c.close();
63 c.fill();
65 c.setShadow(false);
70 c.setFillColor(fillColor);
71 c.setGradient(fillColor, gradientColor, 0, 0, w, h, gradientDir, op1, op2);
73 c.begin();
74 c.moveTo(ind, ind);
75 c.lineTo(w - ind, ind);
76 c.lineTo(w - ind, w - ind);
77 c.lineTo(ind, w - ind);
78 c.close();
79 c.fill();
87 c.setFillColor(strokeColor);
88 c.setStrokeColor('none');
90 stencil.drawShape(c, this, ind + w * 0.15, ind + w * 0.15, w * 0.7 - 2 * ind, w * 0.7 - 2 * ind);
126 mxShapeAws4ResourceIcon.prototype.paintVertexShape = function(c, x, y, w, h) argument
128 c.translate(x, y);
130 c.begin();
131 c.moveTo(0, 0);
132 c.lineTo(w, 0);
133 c.lineTo(w, h);
134 c.lineTo(0, h);
135 c.close();
136 c.fill();
138 c.setShadow(false);
146 c.setFillColor(strokeColor);
147 c.setStrokeColor('none');
148 stencil.drawShape(c, this, w * 0.1, h * 0.1, w * 0.8, h * 0.8);
184 mxShapeAws4Group.prototype.paintVertexShape = function(c, x, y, w, h) argument
186 c.translate(x, y);
193 c.pointerEvents = false;
196 c.begin();
197 c.moveTo(0, 0);
198 c.lineTo(w, 0);
199 c.lineTo(w, h);
200 c.lineTo(0, h);
201 c.close();
205 c.fillAndStroke();
209 c.fill();
212 c.pointerEvents = true;
213 c.setShadow(false);
221 c.setFillColor(strokeColor);
222 c.setStrokeColor('none');
223 stencil.drawShape(c, this, 0, 0, size, size);
259 mxShapeAws4GroupCenter.prototype.paintVertexShape = function(c, x, y, w, h) argument
261 c.translate(x, y);
266 c.begin();
267 c.moveTo(0, 0);
268 c.lineTo(w, 0);
269 c.lineTo(w, h);
270 c.lineTo(0, h);
271 c.close();
275 c.fillAndStroke();
279 c.fill();
282 c.setShadow(false);
289 c.setFillColor(strokeColor);
290 c.setStrokeColor('none');
291 stencil.drawShape(c, this, (w - size) * 0.5, 0, size, size);
381 mxShapeAws4Group2.prototype.paintVertexShape = function(c, x, y, w, h) argument
383 c.translate(x, y);
387 c.begin();
388 c.moveTo(0, 0);
389 c.lineTo(w, 0);
390 c.lineTo(w, h);
391 c.lineTo(0, h);
392 c.close();
393 c.fillAndStroke();
395 c.setShadow(false);
398 c.setFillColor(strokeColor);
400 c.begin();
401 c.moveTo(0, 0);
402 c.lineTo(size, 0);
403 c.lineTo(size, size);
404 c.lineTo(0, size);
405 c.close();
406 c.fill();
413 c.setFillColor('#ffffff');
414 c.setStrokeColor('none');
415 stencil.drawShape(c, this, size * 0.1, size * 0.1, size * 0.8, size * 0.8);