Lines Matching refs:points
395 Point points[4]; in _appendRect() local
397 points[0] = {x + w, y}; in _appendRect()
398 points[1] = {x + w, y + h}; in _appendRect()
399 points[2] = {x, y + h}; in _appendRect()
400 points[3] = {x, y}; in _appendRect()
402 points[0] = {x + w, y}; in _appendRect()
403 points[1] = {x, y}; in _appendRect()
404 points[2] = {x, y + h}; in _appendRect()
405 points[3] = {x + w, y + h}; in _appendRect()
409 points[i] *= *transform; in _appendRect()
413 …if (offsetPath) offsetPath->modifyRect(commands, 5, points, 4, P(shape)->rs.path.cmds, P(shape)->r… in _appendRect()
414 else shape->appendPath(commands, 5, points, 4); in _appendRect()
428 Point points[ptsCnt]; in _appendRect() local
435 points[0] = {x + w, y + ry}; //moveTo in _appendRect()
436 points[1] = {x + w, y + h - ry}; //lineTo in _appendRect()
437 …points[2] = {x + w, y + h - ry + hry}; points[3] = {x + w - rx + hrx, y + h}; points[4] = {x + w -… in _appendRect()
438 points[5] = {x + rx, y + h}, //lineTo in _appendRect()
439 …points[6] = {x + rx - hrx, y + h}; points[7] = {x, y + h - ry + hry}; points[8] = {x, y + h - ry};… in _appendRect()
440 points[9] = {x, y + ry}, //lineTo in _appendRect()
441 …points[10] = {x, y + ry - hry}; points[11] = {x + rx - hrx, y}; points[12] = {x + rx, y}; //cubicTo in _appendRect()
442 points[13] = {x + w - rx, y}; //lineTo in _appendRect()
443 …points[14] = {x + w - rx + hrx, y}; points[15] = {x + w, y + ry - hry}; points[16] = {x + w, y + r… in _appendRect()
450 points[0] = {x + w, y + ry}; //moveTo in _appendRect()
451 …points[1] = {x + w, y + ry - hry}; points[2] = {x + w - rx + hrx, y}; points[3] = {x + w - rx, y};… in _appendRect()
452 points[4] = {x + rx, y}, //lineTo in _appendRect()
453 … points[5] = {x + rx - hrx, y}; points[6] = {x, y + ry - hry}; points[7] = {x, y + ry}; //cubicTo in _appendRect()
454 points[8] = {x, y + h - ry}; //lineTo in _appendRect()
455 …points[9] = {x, y + h - ry + hry}; points[10] = {x + rx - hrx, y + h}; points[11] = {x + rx, y + h… in _appendRect()
456 points[12] = {x + w - rx, y + h}; //lineTo in _appendRect()
457 …points[13] = {x + w - rx + hrx, y + h}; points[14] = {x + w, y + h - ry + hry}; points[15] = {x + … in _appendRect()
458 points[16] = {x + w, y + ry}; //lineTo in _appendRect()
462 points[i] *= *transform; in _appendRect()
466 …if (offsetPath) offsetPath->modifyRect(commands, cmdCnt, points, ptsCnt, P(shape)->rs.path.cmds, P… in _appendRect()
467 else shape->appendPath(commands, cmdCnt, points, ptsCnt); in _appendRect()
513 Point points[ptsCnt]; in _appendCircle() local
516 points[0] = {cx, cy - ry}; //moveTo in _appendCircle()
517 …points[1] = {cx + rxKappa, cy - ry}; points[2] = {cx + rx, cy - ryKappa}; points[3] = {cx + rx, cy… in _appendCircle()
518 …points[4] = {cx + rx, cy + ryKappa}; points[5] = {cx + rxKappa, cy + ry}; points[6] = {cx, cy + ry… in _appendCircle()
519 …points[7] = {cx - rxKappa, cy + ry}; points[8] = {cx - rx, cy + ryKappa}; points[9] = {cx - rx, cy… in _appendCircle()
520 …points[10] = {cx - rx, cy - ryKappa}; points[11] = {cx - rxKappa, cy - ry}; points[12] = {cx, cy -… in _appendCircle()
522 points[0] = {cx, cy - ry}; //moveTo in _appendCircle()
523 …points[1] = {cx - rxKappa, cy - ry}; points[2] = {cx - rx, cy - ryKappa}; points[3] = {cx - rx, cy… in _appendCircle()
524 …points[4] = {cx - rx, cy + ryKappa}; points[5] = {cx - rxKappa, cy + ry}; points[6] = {cx, cy + ry… in _appendCircle()
525 …points[7] = {cx + rxKappa, cy + ry}; points[8] = {cx + rx, cy + ryKappa}; points[9] = {cx + rx, cy… in _appendCircle()
526 …points[10] = {cx + rx, cy - ryKappa}; points[11] = {cx + rxKappa, cy - ry}; points[12] = {cx, cy -… in _appendCircle()
531 points[i] *= *transform; in _appendCircle()
535 shape->appendPath(commands, cmdsCnt, points, ptsCnt); in _appendCircle()