Lines Matching refs:pPt
514 Point* pPt; in Polygon() local
526 pPt = &(mpImplPolygon->mpPointAry[i]); in Polygon()
527 pPt->X() = nX + rCenter.X(); in Polygon()
528 pPt->Y() = nY + rCenter.Y(); in Polygon()
529 pPt = &(mpImplPolygon->mpPointAry[nPoints2-i-1]); in Polygon()
530 pPt->X() = -nX + rCenter.X(); in Polygon()
531 pPt->Y() = nY + rCenter.Y(); in Polygon()
532 pPt = &(mpImplPolygon->mpPointAry[i+nPoints2]); in Polygon()
533 pPt->X() = -nX + rCenter.X(); in Polygon()
534 pPt->Y() = -nY + rCenter.Y(); in Polygon()
535 pPt = &(mpImplPolygon->mpPointAry[nPoints-i-1]); in Polygon()
536 pPt->X() = nX + rCenter.X(); in Polygon()
537 pPt->Y() = -nY + rCenter.Y(); in Polygon()
1249 Point* pPt = &(mpImplPolygon->mpPointAry[i]); in Move() local
1250 pPt->X() += nHorzMove; in Move()
1251 pPt->Y() += nVertMove; in Move()
1646 const Point* pPt = &(mpImplPolygon->mpPointAry[0]); in GetBoundRect() local
1647 nXMin = nXMax = pPt->X(); in GetBoundRect()
1648 nYMin = nYMax = pPt->Y(); in GetBoundRect()
1652 pPt = &(mpImplPolygon->mpPointAry[i]); in GetBoundRect()
1654 if ( pPt->X() < nXMin ) in GetBoundRect()
1655 nXMin = pPt->X(); in GetBoundRect()
1656 if ( pPt->X() > nXMax ) in GetBoundRect()
1657 nXMax = pPt->X(); in GetBoundRect()
1658 if ( pPt->Y() < nYMin ) in GetBoundRect()
1659 nYMin = pPt->Y(); in GetBoundRect()
1660 if ( pPt->Y() > nYMax ) in GetBoundRect()
1661 nYMax = pPt->Y(); in GetBoundRect()