Searched refs:aB2DPolygon (Results 1 – 7 of 7) sorted by relevance
/trunk/main/sd/source/ui/func/ |
H A D | fucon3d.cxx | 133 ::basegfx::B2DPolygon aB2DPolygon(aXPoly.getB2DPolygon()); in ImpCreateBasic3DShape() 134 if(aB2DPolygon.areControlPointsUsed()) in ImpCreateBasic3DShape() 136 aB2DPolygon = ::basegfx::tools::adaptiveSubdivideByAngle(aB2DPolygon); in ImpCreateBasic3DShape() 138 …p3DObj = new E3dLatheObj(mpView->Get3DDefaultAttributes(), ::basegfx::B2DPolyPolygon(aB2DPolygon)); in ImpCreateBasic3DShape() 160 ::basegfx::B2DPolygon aB2DPolygon(aXPoly.getB2DPolygon()); in ImpCreateBasic3DShape() 161 if(aB2DPolygon.areControlPointsUsed()) in ImpCreateBasic3DShape() 163 aB2DPolygon = ::basegfx::tools::adaptiveSubdivideByAngle(aB2DPolygon); in ImpCreateBasic3DShape() 165 …p3DObj = new E3dLatheObj(mpView->Get3DDefaultAttributes(), ::basegfx::B2DPolyPolygon(aB2DPolygon)); in ImpCreateBasic3DShape() 172 if(aB2DPolygon.areControlPointsUsed()) in ImpCreateBasic3DShape() 174 aB2DPolygon = ::basegfx::tools::adaptiveSubdivideByAngle(aB2DPolygon); in ImpCreateBasic3DShape() [all …]
|
H A D | fuconrec.cxx | 899 ::basegfx::B2DPolygon aB2DPolygon; in CreateDefaultObject() 900 aB2DPolygon.append(::basegfx::B2DPoint(aStart.X(), nYMiddle)); in CreateDefaultObject() 901 aB2DPolygon.append(::basegfx::B2DPoint(aEnd.X(), nYMiddle)); in CreateDefaultObject() 902 ((SdrPathObj*)pObj)->SetPathPoly(::basegfx::B2DPolyPolygon(aB2DPolygon)); in CreateDefaultObject()
|
/trunk/main/svx/source/svdraw/ |
H A D | svdview.cxx | 128 basegfx::B2DPolygon aB2DPolygon; in SdrDropMarkerOverlay() local 130 aB2DPolygon.append(basegfx::B2DPoint(rRectangle.Left(), rRectangle.Top())); in SdrDropMarkerOverlay() 131 aB2DPolygon.append(basegfx::B2DPoint(rRectangle.Right(), rRectangle.Top())); in SdrDropMarkerOverlay() 133 aB2DPolygon.append(basegfx::B2DPoint(rRectangle.Left(), rRectangle.Bottom())); in SdrDropMarkerOverlay() 134 aB2DPolygon.setClosed(true); in SdrDropMarkerOverlay() 138 basegfx::B2DPolyPolygon(aB2DPolygon)); in SdrDropMarkerOverlay() 143 basegfx::B2DPolygon aB2DPolygon; in SdrDropMarkerOverlay() local 145 aB2DPolygon.append(basegfx::B2DPoint(rStart.X(), rStart.Y())); in SdrDropMarkerOverlay() 146 aB2DPolygon.append(basegfx::B2DPoint(rEnd.X(), rEnd.Y())); in SdrDropMarkerOverlay() 147 aB2DPolygon.setClosed(true); in SdrDropMarkerOverlay() [all …]
|
/trunk/main/vcl/source/gdi/ |
H A D | outdev.cxx | 1988 basegfx::B2DPolygon aB2DPolygon(rPoly.getB2DPolygon()); in DrawPolygon() local 1992 aB2DPolygon.transform(aTransform); in DrawPolygon() 1993 aB2DPolygon.setClosed(true); in DrawPolygon() 2006 aB2DPolygon = basegfx::tools::snapPointsOfHorizontalOrVerticalEdges(aB2DPolygon); in DrawPolygon() 2010 aB2DPolygon, in DrawPolygon() 2277 basegfx::B2DPolygon aB2DPolygon(rB2DPolygon); in ImpTryDrawPolyLineDirect() local 2278 aB2DPolygon.transform(aTransform); in ImpTryDrawPolyLineDirect() 2281 && aB2DPolygon.count() < 1000) in ImpTryDrawPolyLineDirect() 2286 aB2DPolygon.removeDoublePoints(); in ImpTryDrawPolyLineDirect() 2287 aB2DPolygon = basegfx::tools::snapPointsOfHorizontalOrVerticalEdges(aB2DPolygon); in ImpTryDrawPolyLineDirect() [all …]
|
/trunk/main/sc/source/filter/excel/ |
H A D | xiescher.cxx | 1076 ::basegfx::B2DPolygon aB2DPolygon; in DoCreateSdrObj() 1081 aB2DPolygon.append( ::basegfx::B2DPoint( rAnchorRect.Left(), rAnchorRect.Top() ) ); in DoCreateSdrObj() 1085 aB2DPolygon.append( ::basegfx::B2DPoint( rAnchorRect.Right(), rAnchorRect.Top() ) ); in DoCreateSdrObj() 1086 aB2DPolygon.append( ::basegfx::B2DPoint( rAnchorRect.Left(), rAnchorRect.Bottom() ) ); in DoCreateSdrObj() 1090 aB2DPolygon.append( ::basegfx::B2DPoint( rAnchorRect.Left(), rAnchorRect.Top() ) ); in DoCreateSdrObj() 1094 aB2DPolygon.append( ::basegfx::B2DPoint( rAnchorRect.Right(), rAnchorRect.Top() ) ); in DoCreateSdrObj() 1097 SdrObjectPtr xSdrObj( new SdrPathObj( OBJ_LINE, ::basegfx::B2DPolyPolygon( aB2DPolygon ) ) ); in DoCreateSdrObj() 1370 ::basegfx::B2DPolygon aB2DPolygon; in DoCreateSdrObj() 1372 aB2DPolygon.append( lclGetPolyPoint( rAnchorRect, *aIt ) ); in DoCreateSdrObj() 1375 aB2DPolygon.append( lclGetPolyPoint( rAnchorRect, maCoords.front() ) ); in DoCreateSdrObj() [all …]
|
/trunk/main/drawinglayer/source/primitive2d/ |
H A D | polygonprimitive2d.cxx | 233 … const basegfx::B2DPolygon aB2DPolygon(basegfx::tools::simplifyCurveSegments(getB2DPolygon())); in create2DDecomposition() local 239 aHairLinePolyPolygon.append(aB2DPolygon); in create2DDecomposition() 245 aB2DPolygon, getStrokeAttribute().getDotDashArray(), in create2DDecomposition()
|
/trunk/main/vcl/source/helper/ |
H A D | canvastools.cxx | 93 const basegfx::B2DPolygon aB2DPolygon(inputPolygon.getB2DPolygon()); in xPolyPolygonFromPolygon() local 94 return basegfx::unotools::xPolyPolygonFromB2DPolygon(xGraphicDevice, aB2DPolygon); in xPolyPolygonFromPolygon() 148 const basegfx::B2DPolygon aB2DPolygon(basegfx::unotools::polygonFromBezier2DSequence(curves)); in polygonFromBezier2DSequence() local 149 return ::Polygon(aB2DPolygon); in polygonFromBezier2DSequence()
|
Completed in 155 milliseconds