Lines Matching refs:fCos
1218 void XPolygon::Rotate(const Point& rCenter, double fSin, double fCos) in Rotate() argument
1237 nNewX = (long)floor(fCos * nX + fSin * nY + 0.5); in Rotate()
1238 nNewY = -(long)floor(fSin * nX - fCos * nY + 0.5); in Rotate()
1277 double fCos = cos(fAngle); in Rotate() local
1278 Rotate(rCenter, fSin, fCos); in Rotate()
1318 void XPolygon::SlantX(long nYRef, double fSin, double fCos) in SlantX() argument
1330 rPnt.Y() = nYRef + (long)(fCos * nDy); in SlantX()
1345 void XPolygon::SlantY(long nXRef, double fSin, double fCos) in SlantY() argument
1356 rPnt.X() = nXRef + (long)(fCos * nDx); in SlantY()
1976 void XPolyPolygon::Rotate(const Point& rCenter, double fSin, double fCos) in Rotate() argument
1981 pImpXPolyPolygon->aXPolyList.GetObject(i)->Rotate(rCenter, fSin, fCos); in Rotate()
2018 double fCos = cos(fAngle); in Rotate() local
2019 Rotate(rCenter, fSin, fCos); in Rotate()
2052 void XPolyPolygon::SlantX(long nYRef, double fSin, double fCos) in SlantX() argument
2057 pImpXPolyPolygon->aXPolyList.GetObject(i)->SlantX(nYRef, fSin, fCos); in SlantX()
2071 void XPolyPolygon::SlantY(long nXRef, double fSin, double fCos) in SlantY() argument
2076 pImpXPolyPolygon->aXPolyList.GetObject(i)->SlantY(nXRef, fSin, fCos); in SlantY()