Lines Matching refs:size

173 	var size = Math.min(h * 0.5, w * 0.5);
177 c.lineTo(size, 0);
178 c.lineTo(w - size, 0);
180 c.lineTo(w - size, h);
181 c.lineTo(size, h);
189 c.moveTo(w - size, 0);
190 c.lineTo(w - 2 * size, h * 0.5);
191 c.lineTo(w - size, h);
200 var size = Math.min(h * 0.5, w * 0.5);
206 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, size * 0.5, h * 0.25));
207 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - size * 0.5, h * 0.25));
208 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, size * 0.5, h * 0.75));
209 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - size * 0.5, h * 0.75));
213 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, size, 0));
214 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - size, 0));
215 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, size, h));
216 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - size, h));
219 if(size * 4 <= w)
260 var size = Math.min(h * 0.5, w * 0.5);
313 var size = 10;
317 c.lineTo(w - size, 0);
318 c.lineTo(w, size);
320 c.lineTo(size, h);
321 c.lineTo(0, h - size);
333 c.lineTo(w - size, 0);
334 c.lineTo(w, size);
335 c.lineTo(size, size);
336 c.lineTo(size, h);
337 c.lineTo(0, h - size);
347 c.lineTo(w - size, 0);
348 c.lineTo(w, size);
350 c.lineTo(size, h);
351 c.lineTo(0, h - size);
353 c.moveTo(size, h);
354 c.lineTo(size, size);
355 c.lineTo(w, size);
357 c.lineTo(size, size);
366 var size = 10;
369 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w - size) * 0.25, 0));
370 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w - size) * 0.5, 0));
371 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w - size) * 0.75, 0));
372 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - size, 0));
373 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, size, h));
374 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w - size) * 0.25 + size, h…
375 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w - size) * 0.5 + size, h)…
376 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w - size) * 0.75 + size, h…
378 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w, size));
379 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w, size + (h - size) * 0.25…
380 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w, size + (h - size) * 0.5)…
381 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w, size + (h - size) * 0.75…
382 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, 0, (h - size) * 0.25));
383 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, 0, (h - size) * 0.5));
384 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, 0, (h - size) * 0.75));
385 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, 0, h - size));