Lines Matching refs:pArcPts
1350 SppPointPtr pArcPts;
1398 pArcPts = malloc(3 * sizeof(SppPointRec));
1399 if (!pArcPts)
1401 pArcPts[0].x = otherCorner.x;
1402 pArcPts[0].y = otherCorner.y;
1403 pArcPts[1].x = center.x;
1404 pArcPts[1].y = center.y;
1405 pArcPts[2].x = corner.x;
1406 pArcPts[2].y = corner.y;
1407 if ((cpt = miGetArcPts(&arc, 3, &pArcPts))) {
1411 miFillSppPoly(pDraw, pGC, cpt, pArcPts, xOrg, yOrg, xFtrans,
1414 free(pArcPts);
1505 SppPointPtr pArcPts;
1523 pArcPts = (SppPointPtr) NULL;
1524 if ((cpt = miGetArcPts(&arc, 0, &pArcPts))) {
1528 miFillSppPoly(pDraw, pGC, cpt, pArcPts, -xOrg, -yOrg, xFtrans, yFtrans);
1530 free(pArcPts);