Lines Matching refs:h

48 mxShapePidFan.prototype.paintVertexShape = function(c, x, y, w, h)  argument
51 this.background(c, x, y, w, h);
53 this.foreground(c, x, y, w, h);
56 mxShapePidFan.prototype.background = function(c, x, y, w, h) argument
58 c.ellipse(0, 0, w, h);
62 mxShapePidFan.prototype.foreground = function(c, x, y, w, h) argument
65 c.moveTo(w * 0.3, h * 0.045);
66 c.lineTo(w * 0.97, h * 0.33);
67 c.moveTo(w * 0.3, h * 0.955);
68 c.lineTo(w * 0.97, h * 0.67);
70 c.moveTo(w * 0.4228, h * 0.3655);
71 c.arcTo(w * 0.15, h * 0.03, 50, 0, 1, w * 0.5, h * 0.5);
72 c.arcTo(w * 0.15, h * 0.03, 50, 0, 1, w * 0.3772, h * 0.4045);
73 c.arcTo(w * 0.15, h * 0.03, 50, 0, 1, w * 0.3025, h * 0.271);
74 c.arcTo(w * 0.15, h * 0.03, 50, 0, 1, w * 0.4228, h * 0.3655);
77 c.moveTo(w * 0.377, h * 0.5973);
78 c.arcTo(w * 0.15, h * 0.03, -50, 0, 1, w * 0.4966, h * 0.5019);
79 c.arcTo(w * 0.15, h * 0.03, -50, 0, 1, w * 0.423, h * 0.636);
80 c.arcTo(w * 0.15, h * 0.03, -50, 0, 1, w * 0.3034, h * 0.7314);
81 c.arcTo(w * 0.15, h * 0.03, -50, 0, 1, w * 0.377, h * 0.5973);
85 c.ellipse(w * 0.5, h * 0.47, w * 0.3, h * 0.06);
93 c.moveTo(w * 0.1, h * 0.5);
94 c.lineTo(w * 0.3, h * 0.5);
100 c.moveTo(w * 0.2, h * 0.4);
101 c.lineTo(w * 0.2, h * 0.6);
160 mxShapePidColumn.prototype.paintVertexShape = function(c, x, y, w, h) argument
163 this.background(c, x, y, w, h);
165 this.foreground(c, x, y, w, h);
168 mxShapePidColumn.prototype.background = function(c, x, y, w, h) argument
170 h = Math.max(h, 30);
175 c.lineTo(w, h - 15);
176 c.arcTo(w * 0.5, 15, 0, 0, 1, 0, h - 15);
181 mxShapePidColumn.prototype.foreground = function(c, x, y, w, h) argument
188 var range = h - 50;
211 var range = h - 50;
230 var range = h - 50;
233 var dot = Math.min(w, h) * 0.02;
244 c.moveTo(0, h - 25);
245 c.lineTo(w, h - 25);
281 var range = h - 50 - stepY;
290 c.moveTo(0, h - 25);
291 c.lineTo(w, h - 25);
324 var range = h - 50 - stepY;
335 c.moveTo(0, h - 25);
336 c.lineTo(w, h - 25);
375 var range = h - 50;
456 mxShapePidConveyor.prototype.paintVertexShape = function(c, x, y, w, h) argument
459 this.background(c, x, y, w, h);
463 mxShapePidConveyor.prototype.background = function(c, x, y, w, h) argument
465 var wheelSize = Math.min(h, w * 0.5);