Home
last modified time | relevance | path

Searched refs:rP1 (Results 1 – 15 of 15) sorted by last modified time

/trunk/main/sw/source/core/layout/
H A Dpaintfrm.cxx6164 const Point &rP1, in lcl_RefreshLine() argument
6170 ASSERT( ((rP1.X() == rP2.X()) || (rP1.Y() == rP2.Y())), in lcl_RefreshLine()
6172 const PointPtr pDirPt = rP1.X() == rP2.X() ? pY : pX; in lcl_RefreshLine()
6176 Point aP1( rP1 ), in lcl_RefreshLine()
6233 if ( rP1.*pOthPt >= aDrPt.*pOthPt && in lcl_RefreshLine()
6234 rP1.*pOthPt <= (aDrPt.*pOthPt + aDrSz.*pOthSz) ) in lcl_RefreshLine()
/trunk/main/svx/source/svdraw/
H A Dsvdopath.cxx295 aBezStart=rP1; in CalcBezier()
296 aBezCtrl1=rP1+rDir; in CalcBezier()
320 aCircStart=rP1; in CalcCircle()
322 aCircCenter=rP1; in CalcCircle()
323 long dx=rP2.X()-rP1.X(); in CalcCircle()
324 long dy=rP2.Y()-rP1.Y(); in CalcCircle()
414 aLineStart=rP1; in CalcLine()
418 Point aTmpPt(rP2-rP1); in CalcLine()
444 aRectP1=rP1; in CalcRect()
445 aRectP2=rP1; in CalcRect()
[all …]
/trunk/main/filter/source/graphicfilter/eps/
H A Deps.cxx198 …void ImplCurveTo( const Point& rP1, const Point& rP2, const Point& rP3, sal_uInt32 nMode = PS_S…
1431 void PSWriter::ImplCurveTo( const Point& rP1, const Point& rP2, const Point& rP3, sal_uInt32 nMode ) in ImplCurveTo() argument
1433 ImplWritePoint( rP1 ); in ImplCurveTo()
/trunk/main/sw/source/filter/ww8/
H A Dww8graf.cxx335 Point& rP1 = aP[1]; in ReadLine() local
339 rP1 = rP0; in ReadLine()
342 rP1.X() += (sal_Int16)SVBT16ToShort( aLine.xaEnd ); in ReadLine()
343 rP1.Y() += (sal_Int16)SVBT16ToShort( aLine.yaEnd ); in ReadLine()
/trunk/main/sw/source/ui/wrtsh/
H A Dselect.cxx439 inline sal_Bool operator<(const Point &rP1,const Point &rP2) in operator <() argument
441 return rP1.Y() < rP2.Y() || (rP1.Y() == rP2.Y() && rP1.X() < rP2.X()); in operator <()
/trunk/main/tools/source/generic/
H A Dpoly.cxx867 const Point& rP1 = mpImplPolygon->mpPointAry[ nP1 ]; in CalcDistance() local
869 const double fDx = rP2.X() - rP1.X(); in CalcDistance()
870 const double fDy = rP2.Y() - rP1.Y(); in CalcDistance()
/trunk/main/sw/source/ui/envelp/
H A Dlabfmt.cxx246 void SwLabPreview::DrawArrow(const Point &rP1, const Point &rP2, sal_Bool bArrow) in DrawArrow() argument
248 DrawLine(rP1, rP2); in DrawArrow()
255 if (rP1.Y() == rP2.Y()) in DrawArrow()
283 if (rP1.Y() == rP2.Y()) in DrawArrow()
286 DrawLine(Point(rP1.X(), rP1.Y() - 2), Point(rP1.X(), rP1.Y() + 2)); in DrawArrow()
292 DrawLine(Point(rP1.X() - 2, rP1.Y()), Point(rP1.X() + 2, rP1.Y())); in DrawArrow()
H A Dlabfmt.hxx65 void DrawArrow(const Point& rP1, const Point& rP2, sal_Bool bArrow);
/trunk/main/svx/source/xoutdev/
H A D_xpoly.cxx888 const Point& rP1 = pImpXPolygon->pPointAry[nP1]; in CalcDistance() local
890 double fDx = rP2.X() - rP1.X(); in CalcDistance()
891 double fDy = rP2.Y() - rP1.Y(); in CalcDistance()
/trunk/main/svx/source/dialog/
H A Dframelink.cxx753 Polygon lclCreatePolygon( const Point& rP1, const Point& rP2, const Point& rP3, const Point& rP4 ) in lclCreatePolygon() argument
757 aPoints.push_back( rP1 ); in lclCreatePolygon()
765 Polygon lclCreatePolygon( const Point& rP1, const Point& rP2, const Point& rP3, const Point& rP4, c… in lclCreatePolygon() argument
769 aPoints.push_back( rP1 ); in lclCreatePolygon()
860 inline void lclDrawPolygon( OutputDevice& rDev, const Point& rP1, const Point& rP2, const Point& rP… in lclDrawPolygon() argument
862 rDev.DrawPolygon( lclCreatePolygon( rP1, rP2, rP3, rP4 ) ); in lclDrawPolygon()
/trunk/main/svx/inc/svx/
H A Dframelink.hxx236 inline double GetHorDiagAngle( const Point& rP1, const Point& rP2 ) in GetHorDiagAngle() argument
237 { return GetHorDiagAngle( rP2.X() - rP1.X(), rP2.Y() - rP1.Y() ); } in GetHorDiagAngle()
273 inline double GetVerDiagAngle( const Point& rP1, const Point& rP2 ) in GetVerDiagAngle() argument
274 { return GetVerDiagAngle( rP2.X() - rP1.X(), rP2.Y() - rP1.Y() ); } in GetVerDiagAngle()
/trunk/main/sc/source/ui/drawfunc/
H A Dfusel2.cxx53 inline long Diff( const Point& rP1, const Point& rP2 ) in Diff() argument
55 long nX = rP1.X() - rP2.X(); in Diff()
57 long nY = rP1.Y() - rP2.Y(); in Diff()
/trunk/main/basegfx/source/tools/
H A Ddebugplotter.cxx243 const B2DPoint& rP1( rCurrPoly.getNextControlPoint(k) ); in ~DebugPlotter() local
250 << rP1.getX() << "," in ~DebugPlotter()
254 << rP1.getY() << "," in ~DebugPlotter()
261 rP1.getX(), in ~DebugPlotter()
265 rP1.getY(), in ~DebugPlotter()
/trunk/main/basegfx/source/polygon/
H A Db2dpolypolygonrasterconverter.cxx293 …inline B2DPolyPolygonRasterConverter::Vertex::Vertex( const B2DPoint& rP1, const B2DPoint& rP2, bo… in Vertex() argument
294 aP1( rP1 ), in Vertex()
320 ImplLineNode(const B2DPoint& rP1, const B2DPoint& rP2, bool bDown) : in ImplLineNode() argument
321 mnYCounter( fround(rP2.getY()) - fround(rP1.getY()) ), in ImplLineNode()
322 mfXPos( (float)(rP1.getX()) ), in ImplLineNode()
323 mfXDelta((float) ((rP2.getX() - rP1.getX()) / mnYCounter) ), in ImplLineNode()
399 const B2DPoint& rP1( rPoly.getB2DPoint(k) ); in init() local
402 const sal_Int32 nVertexYP1( fround(rP1.getY()) ); in init()
415 maScanlines[ nStartScanline ].push_back( Vertex(rP2, rP1, false) ); in init()
421 maScanlines[ nStartScanline ].push_back( Vertex(rP1, rP2, true) ); in init()
/trunk/main/basebmp/source/
H A Dpolypolygonrenderer.cxx50 const basegfx::B2DPoint& rP1( rPoly.getB2DPoint(k) ); in setupGlobalEdgeTable() local
53 const sal_Int32 nVertexYP1( basegfx::fround(rP1.getY()) ); in setupGlobalEdgeTable()
68 rGET[ nStartScanline ].push_back( Vertex(rP2, rP1, false) ); in setupGlobalEdgeTable()
75 rGET[ nStartScanline ].push_back( Vertex(rP1, rP2, true) ); in setupGlobalEdgeTable()

Completed in 128 milliseconds