Lines Matching refs:rRef

67 SVX_DLLPUBLIC void ResizeRect(Rectangle& rRect, const Point& rRef, const Fraction& xFact, const Fra…
68 inline void ResizePoint(Point& rPnt, const Point& rRef, Fraction xFact, Fraction yFact);
69 void ResizePoly(Polygon& rPoly, const Point& rRef, const Fraction& xFact, const Fraction& yFact);
70 void ResizeXPoly(XPolygon& rPoly, const Point& rRef, const Fraction& xFact, const Fraction& yFact);
71 void ResizePoly(PolyPolygon& rPoly, const Point& rRef, const Fraction& xFact, const Fraction& yFact…
72 void ResizeXPoly(XPolyPolygon& rPoly, const Point& rRef, const Fraction& xFact, const Fraction& yFa…
74 inline void RotatePoint(Point& rPnt, const Point& rRef, double sn, double cs);
75 SVX_DLLPUBLIC void RotatePoly(Polygon& rPoly, const Point& rRef, double sn, double cs);
76 void RotateXPoly(XPolygon& rPoly, const Point& rRef, double sn, double cs);
77 void RotatePoly(PolyPolygon& rPoly, const Point& rRef, double sn, double cs);
78 void RotateXPoly(XPolyPolygon& rPoly, const Point& rRef, double sn, double cs);
89 inline void ShearPoint(Point& rPnt, const Point& rRef, double tn, FASTBOOL bVShear=sal_False);
90 SVX_DLLPUBLIC void ShearPoly(Polygon& rPoly, const Point& rRef, double tn, FASTBOOL bVShear=sal_Fal…
91 void ShearXPoly(XPolygon& rPoly, const Point& rRef, double tn, FASTBOOL bVShear=sal_False);
92 void ShearPoly(PolyPolygon& rPoly, const Point& rRef, double tn, FASTBOOL bVShear=sal_False);
93 void ShearXPoly(XPolyPolygon& rPoly, const Point& rRef, double tn, FASTBOOL bVShear=sal_False);
124 inline void ResizePoint(Point& rPnt, const Point& rRef, Fraction xFact, Fraction yFact) in ResizePoint() argument
128 …rPnt.X()=rRef.X()+ Round(((double)(rPnt.X()-rRef.X())*xFact.GetNumerator())/xFact.GetDenominator()… in ResizePoint()
129 …rPnt.Y()=rRef.Y()+ Round(((double)(rPnt.Y()-rRef.Y())*yFact.GetNumerator())/yFact.GetDenominator()… in ResizePoint()
132 inline void RotatePoint(Point& rPnt, const Point& rRef, double sn, double cs) in RotatePoint() argument
134 long dx=rPnt.X()-rRef.X(); in RotatePoint()
135 long dy=rPnt.Y()-rRef.Y(); in RotatePoint()
136 rPnt.X()=Round(rRef.X()+dx*cs+dy*sn); in RotatePoint()
137 rPnt.Y()=Round(rRef.Y()+dy*cs-dx*sn); in RotatePoint()
140 inline void ShearPoint(Point& rPnt, const Point& rRef, double tn, FASTBOOL bVShear) in ShearPoint() argument
143 if (rPnt.Y()!=rRef.Y()) { // sonst nicht noetig in ShearPoint()
144 rPnt.X()-=Round((rPnt.Y()-rRef.Y())*tn); in ShearPoint()
147 if (rPnt.X()!=rRef.X()) { // sonst nicht noetig in ShearPoint()
148 rPnt.Y()-=Round((rPnt.X()-rRef.X())*tn); in ShearPoint()