Home
last modified time | relevance | path

Searched refs:basegfx (Results 351 – 375 of 1243) sorted by relevance

1...<<11121314151617181920>>...50

/trunk/main/drawinglayer/inc/drawinglayer/primitive2d/
H A Dshadowprimitive2d.hxx56 basegfx::B2DHomMatrix maShadowTransform;
59 basegfx::BColor maShadowColor;
64 const basegfx::B2DHomMatrix& rShadowTransform,
65 const basegfx::BColor& rShadowColor,
69 const basegfx::B2DHomMatrix& getShadowTransform() const { return maShadowTransform; } in getShadowTransform()
70 const basegfx::BColor& getShadowColor() const { return maShadowColor; } in getShadowColor()
76 virtual basegfx::B2DRange getB2DRange(const geometry::ViewInformation2D& rViewInformation) const;
H A Dpatternfillprimitive2d.hxx47 const basegfx::B2DPolyPolygon maMask;
49 const basegfx::B2DRange maReferenceRange;
58 const basegfx::B2DPolyPolygon& rMask,
60 const basegfx::B2DRange& rReferenceRange);
63 const basegfx::B2DPolyPolygon& getMask() const { return maMask; } in getMask()
65 const basegfx::B2DRange& getReferenceRange() const { return maReferenceRange; } in getReferenceRange()
71 … virtual basegfx::B2DRange getB2DRange(const geometry::ViewInformation2D& rViewInformation) const;
H A Dmediaprimitive2d.hxx51 basegfx::B2DHomMatrix maTransform;
57 basegfx::BColor maBackgroundColor;
69 const basegfx::B2DHomMatrix& rTransform,
71 const basegfx::BColor& rBackgroundColor,
75 const basegfx::B2DHomMatrix& getTransform() const { return maTransform; } in getTransform()
77 const basegfx::BColor& getBackgroundColor() const { return maBackgroundColor; } in getBackgroundColor()
84 virtual basegfx::B2DRange getB2DRange(const geometry::ViewInformation2D& rViewInformation) const;
/trunk/main/cppcanvas/source/inc/
H A Daction.hxx33 namespace basegfx namespace
98 virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation ) const = 0;
114 virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation,
125 … virtual ::basegfx::B2DRange getBounds( const ::basegfx::B2DHomMatrix& rTransformation ) const = 0;
140 virtual ::basegfx::B2DRange getBounds( const ::basegfx::B2DHomMatrix& rTransformation,
/trunk/main/svx/source/sdr/primitive2d/
H A Dsdrtextprimitive2d.cxx270 const basegfx::B2DPolyPolygon& rUnitPolyPolygon, in SdrContourTextPrimitive2D()
271 const basegfx::B2DHomMatrix& rObjectTransform) in SdrContourTextPrimitive2D()
291 …SdrTextPrimitive2D* SdrContourTextPrimitive2D::createTransformedClone(const basegfx::B2DHomMatrix&… in createTransformedClone()
323 const basegfx::B2DPolyPolygon& rPathPolyPolygon, in SdrPathTextPrimitive2D()
344 …SdrTextPrimitive2D* SdrPathTextPrimitive2D::createTransformedClone(const basegfx::B2DHomMatrix& rT… in createTransformedClone()
346 basegfx::B2DPolyPolygon aNewPolyPolygon(getPathPolyPolygon()); in createTransformedClone()
379 const basegfx::B2DHomMatrix& rTextRangeTransform, in SdrBlockTextPrimitive2D()
418 …SdrTextPrimitive2D* SdrBlockTextPrimitive2D::createTransformedClone(const basegfx::B2DHomMatrix& r… in createTransformedClone()
456 const basegfx::B2DHomMatrix& rTextRangeTransform, in SdrStretchTextPrimitive2D()
477 …SdrTextPrimitive2D* SdrStretchTextPrimitive2D::createTransformedClone(const basegfx::B2DHomMatrix&… in createTransformedClone()
/trunk/main/drawinglayer/source/primitive2d/
H A Dtextlayoutdevice.cxx221 basegfx::B2DPolyPolygonVector& rB2DPolyPolyVector, in getTextOutlines()
243 aIntegerDXArray[a] = basegfx::fround(rDXArray[a]); in getTextOutlines()
270 basegfx::B2DRange TextLayouterDevice::getTextBoundRect( in getTextBoundRect()
297 return basegfx::B2DRange( in getTextBoundRect()
303 return basegfx::B2DRange(); in getTextBoundRect()
375 const sal_uInt32 nHeight(basegfx::fround(fabs(fFontScaleY))); in getVclFontFromFontAttribute()
376 const sal_uInt32 nWidth(basegfx::fround(fabs(fFontScaleX))); in getVclFontFromFontAttribute()
417 …const sal_uInt32 nScaledWidth(basegfx::fround((double)aUnscaledFontMetric.GetWidth() * fScaleFacto… in getVclFontFromFontAttribute()
423 if(!basegfx::fTools::equalZero(fFontRotation)) in getVclFontFromFontAttribute()
433 basegfx::B2DVector& o_rSize, in getFontAttributeFromVclFont()
/trunk/main/slideshow/source/engine/transitions/
H A Dbarndoorwipe.cxx37 ::basegfx::B2DPolyPolygon BarnDoorWipe::operator () ( double t ) in operator ()()
42 basegfx::B2DHomMatrix aTransform(basegfx::tools::createTranslateB2DHomMatrix(-0.5, -0.5)); in operator ()()
43 aTransform.scale( ::basegfx::pruneScaleValue(t), 1.0 ); in operator ()()
45 ::basegfx::B2DPolygon poly( m_unitRect ); in operator ()()
47 ::basegfx::B2DPolyPolygon res(poly); in operator ()()
50 aTransform = basegfx::tools::createTranslateB2DHomMatrix(-0.5, -0.5); in operator ()()
H A Dcheckerboardwipe.cxx35 ::basegfx::B2DPolyPolygon CheckerBoardWipe::operator () ( double t ) in operator ()()
38 ::basegfx::B2DHomMatrix aTransform; in operator ()()
39 aTransform.scale( ::basegfx::pruneScaleValue( d * 2.0 * t ), in operator ()()
40 ::basegfx::pruneScaleValue( d ) ); in operator ()()
42 ::basegfx::B2DPolyPolygon res; in operator ()()
45 ::basegfx::B2DHomMatrix transform( aTransform ); in operator ()()
50 ::basegfx::B2DPolyPolygon poly( m_unitRect ); in operator ()()
H A Dsweepwipe.cxx39 ::basegfx::B2DPolyPolygon SweepWipe::operator () ( double t ) in operator ()()
47 ::basegfx::B2DPolygon poly( ClockWipe::calcCenteredClock( 0.25 + t ) ); in operator ()()
48 ::basegfx::B2DHomMatrix aTransform; in operator ()()
52 aTransform = basegfx::tools::createTranslateB2DHomMatrix(0.5, 0.0); in operator ()()
55 ::basegfx::B2DPolyPolygon res(poly); in operator ()()
61 aTransform = basegfx::tools::createScaleB2DHomMatrix(1.0, -1.0); in operator ()()
68 aTransform = basegfx::tools::createTranslateB2DHomMatrix(-0.5, -0.5); in operator ()()
/trunk/main/basegfx/inc/basegfx/vector/
H A Db3dvector.hxx32 namespace basegfx namespace
45 class BASEGFX_DLLPUBLIC B3DVector : public ::basegfx::B3DTuple
86 B3DVector(const ::basegfx::B3DTuple& rTuple) in B3DVector()
116 B3DVector& operator=( const ::basegfx::B3DTuple& rVec ) in operator =()
181 if(!::basegfx::fTools::equalZero(fLenNow)) in setLength()
185 if(!::basegfx::fTools::equal(fOne, fLenNow)) in setLength()
215 return (::basegfx::fTools::equal(fOne, fScalar)); in isNormalized()
269 return (const B3DVector&) ::basegfx::B3DTuple::getEmptyTuple(); in getEmptyVector()
/trunk/main/drawinglayer/inc/drawinglayer/processor3d/
H A Dcutfindprocessor3d.hxx45 basegfx::B3DPoint maFront;
46 basegfx::B3DPoint maBack;
49 ::std::vector< basegfx::B3DPoint > maResult;
55 basegfx::B3DHomMatrix maCombinedTransform;
72 const basegfx::B3DPoint& rFront,
73 const basegfx::B3DPoint& rBack,
83 const ::std::vector< basegfx::B3DPoint >& getCutPoints() const { return maResult; } in getCutPoints()
/trunk/main/slideshow/source/inc/
H A Dviewlayer.hxx30 namespace basegfx namespace
106 createSprite( const basegfx::B2DVector& rSpriteSizePixel,
119 virtual void setPriority( const basegfx::B1DRange& rRange ) = 0;
133 virtual basegfx::B2DHomMatrix getTransformation() const = 0;
141 virtual basegfx::B2DHomMatrix getSpriteTransformation() const = 0;
151 virtual void setClip( const basegfx::B2DPolyPolygon& rClip ) = 0;
163 virtual bool resize( const basegfx::B2DRange& rArea ) = 0;
/trunk/main/sw/source/ui/docvw/
H A DShadowOverlayObject.hxx47 basegfx::B2DPoint maSecondPosition;
50 ShadowOverlayObject( const basegfx::B2DPoint& rBasePos,
51 const basegfx::B2DPoint& rSecondPosition,
60 inline const basegfx::B2DPoint& GetSecondPosition() const { return maSecondPosition; } in GetSecondPosition()
61 void SetSecondPosition( const basegfx::B2DPoint& rNew );
63 void SetPosition( const basegfx::B2DPoint& rPoint1,
64 const basegfx::B2DPoint& rPoint2 );
/trunk/main/drawinglayer/inc/drawinglayer/processor2d/
H A Dtextaspolygonextractor2d.hxx44 basegfx::B2DPolyPolygon maB2DPolyPolygon;
45 basegfx::BColor maBColor;
50 const basegfx::B2DPolyPolygon& rB2DPolyPolygon, in TextAsPolygonDataNode()
51 const basegfx::BColor& rBColor, in TextAsPolygonDataNode()
60 const basegfx::B2DPolyPolygon& getB2DPolyPolygon() const { return maB2DPolyPolygon; } in getB2DPolyPolygon()
61 const basegfx::BColor& getBColor() const { return maBColor; } in getBColor()
79 basegfx::BColorModifierStack maBColorModifierStack;
H A Dhittestprocessor2d.hxx33 namespace basegfx { class B2DPolygon; } namespace
34 namespace basegfx { class B2DPolyPolygon; } namespace
52 basegfx::B2DPoint maDiscreteHitPosition;
75 const basegfx::B2DPolygon& rPolygon,
78 const basegfx::B2DPolyPolygon& rPolyPolygon,
85 const basegfx::B2DPoint& rLogicHitPosition,
97 const basegfx::B2DPoint& getDiscreteHitPosition() const { return maDiscreteHitPosition; } in getDiscreteHitPosition()
/trunk/main/vcl/aqua/source/gdi/
H A Dctfonts.cxx221 struct GgoData { basegfx::B2DPolygon maPolygon; basegfx::B2DPolyPolygon* mpPolyPoly; };
225 basegfx::B2DPolygon& rPolygon = static_cast<GgoData*>(pData)->maPolygon; in MyCGPathApplierFunc()
240 rPolygon.append( basegfx::B2DPoint( +pElement->points[0].x, -pElement->points[0].y ) ); in MyCGPathApplierFunc()
243 rPolygon.append( basegfx::B2DPoint( +pElement->points[2].x, -pElement->points[2].y ) ); in MyCGPathApplierFunc()
244 …rPolygon.setNextControlPoint( nPointCount-1, basegfx::B2DPoint( pElement->points[0].x, -pElement->… in MyCGPathApplierFunc()
248 const basegfx::B2DPoint aStartPt = rPolygon.getB2DPoint( nPointCount-1 ); in MyCGPathApplierFunc()
249 const basegfx::B2DPoint aCtrPt1( (aStartPt.getX() + 2* pElement->points[0].x) / 3.0, in MyCGPathApplierFunc()
251 const basegfx::B2DPoint aCtrPt2( (+2 * +pElement->points[0].x + pElement->points[1].x) / 3.0, in MyCGPathApplierFunc()
253 rPolygon.append( basegfx::B2DPoint( +pElement->points[1].x, -pElement->points[1].y ) ); in MyCGPathApplierFunc()
260 bool CTTextStyle::GetGlyphOutline( sal_GlyphId aGlyphId, basegfx::B2DPolyPolygon& rResult ) const in GetGlyphOutline()
[all …]
/trunk/main/svx/source/engine3d/
H A Dlathe3d.cxx70 E3dLatheObj::E3dLatheObj(E3dDefaultAttributes& rDefault, const basegfx::B2DPolyPolygon rPoly2D) in E3dLatheObj()
75 basegfx::B2DHomMatrix aMirrorY; in E3dLatheObj()
88 const basegfx::B2DPolygon rPoly(maPolyPoly2D.getB2DPolygon(0L)); in E3dLatheObj()
186 void E3dLatheObj::SetPolyPoly2D(const basegfx::B2DPolyPolygon& rNew) in SetPolyPoly2D()
195 const basegfx::B2DPolygon rPoly(maPolyPoly2D.getB2DPolygon(0L)); in SetPolyPoly2D()
255basegfx::B3DPolyPolygon aLathePoly3D(basegfx::tools::createB3DPolyPolygonFromB2DPolyPolygon(maPoly… in GetBreakObj()
256 basegfx::B2DPolyPolygon aTransPoly(TransformToScreenCoor(aLathePoly3D)); in GetBreakObj()
/trunk/main/basegfx/inc/basegfx/point/
H A Db2dpoint.hxx33 namespace basegfx namespace
46 class B2DPoint : public ::basegfx::B2DTuple
85 B2DPoint(const ::basegfx::B2IPoint& rPoint) in B2DPoint()
92 B2DPoint(const ::basegfx::B2DTuple& rTuple) in B2DPoint()
120 BASEGFX_DLLPUBLIC B2DPoint& operator=( const ::basegfx::B2DTuple& rPoint );
127 BASEGFX_DLLPUBLIC B2DPoint& operator*=( const ::basegfx::B2DHomMatrix& rMat );
131 return (const B2DPoint&) ::basegfx::B2DTuple::getEmptyTuple(); in getEmptyPoint()
/trunk/main/slideshow/source/engine/shapes/
H A Dviewappletshape.cxx135 bool ViewAppletShape::startApplet( const ::basegfx::B2DRectangle& rBounds ) in startApplet()
200 ::basegfx::B2DRange aTmpRange; in startApplet()
204 const ::basegfx::B2IRange& rPixelBounds( in startApplet()
205 ::basegfx::unotools::b2ISurroundingRangeFromB2DRange( aTmpRange )); in startApplet()
248 bool ViewAppletShape::render( const ::basegfx::B2DRectangle& rBounds ) const in render()
266 bool ViewAppletShape::resize( const ::basegfx::B2DRectangle& rBounds ) const in resize()
271 ::basegfx::B2DRange aTmpRange; in resize()
275 const ::basegfx::B2IRange& rPixelBounds( in resize()
276 ::basegfx::unotools::b2ISurroundingRangeFromB2DRange( aTmpRange )); in resize()
/trunk/main/svx/source/xoutdev/
H A Dxtabgrdt.cxx160 const basegfx::B2DPolygon aRectangle( in CreateBitmapForUI()
161 basegfx::tools::createPolygonFromRect( in CreateBitmapForUI()
162 basegfx::B2DRange(0.0, 0.0, rSize.Width(), rSize.Height()))); in CreateBitmapForUI()
166 basegfx::BColor aStart(rGradient.GetStartColor().getBColor()); in CreateBitmapForUI()
170 const basegfx::BColor aBlack; in CreateBitmapForUI()
175 basegfx::BColor aEnd(rGradient.GetEndColor().getBColor()); in CreateBitmapForUI()
179 const basegfx::BColor aBlack; in CreateBitmapForUI()
232 basegfx::B2DPolyPolygon(aRectangle), in CreateBitmapForUI()
235 const basegfx::BColor aBlack(0.0, 0.0, 0.0); in CreateBitmapForUI()
/trunk/main/svx/source/sdr/overlay/
H A Doverlaytriangle.cxx45 basegfx::B2DPolygon aPolygon; in createOverlayObjectPrimitive2DSequence()
54 basegfx::B2DPolyPolygon(aPolygon), in createOverlayObjectPrimitive2DSequence()
61 const basegfx::B2DPoint& rBasePos, in OverlayTriangle()
62 const basegfx::B2DPoint& rSecondPos, in OverlayTriangle()
63 const basegfx::B2DPoint& rThirdPos, in OverlayTriangle()
75 void OverlayTriangle::setSecondPosition(const basegfx::B2DPoint& rNew) in setSecondPosition()
87 void OverlayTriangle::setThirdPosition(const basegfx::B2DPoint& rNew) in setThirdPosition()
/trunk/main/svx/inc/svx/sdr/primitive2d/
H A Dsdrdecompositiontools.hxx33 namespace basegfx { namespace
55 const basegfx::B2DPolyPolygon& rPolyPolygon,
60 const basegfx::B2DPolyPolygon& rPolyPolygon,
61 const basegfx::B2DRange& rDefinitionRange,
66 const basegfx::B2DPolygon& rPolygon,
71 const basegfx::B2DPolyPolygon& rUnitPolyPolygon,
72 const basegfx::B2DHomMatrix& rObjectTransform,
/trunk/main/canvas/source/directx/
H A Ddx_impltools.hxx38 namespace basegfx namespace
70 ::basegfx::B2DPolyPolygon
80 const ::basegfx::B2DHomMatrix& rMatrix );
87 RECT gdiRectFromB2IRect( const ::basegfx::B2IRange& );
92 ::basegfx::B2DPoint b2dPointFromGdiPlusPointF( const Gdiplus::PointF& );
93 ::basegfx::B2DRange b2dRangeFromGdiPlusRectF( const Gdiplus::RectF& );
104 const ::basegfx::B2DPolygon& rPoly,
108 const ::basegfx::B2DPolyPolygon& rPoly,
/trunk/main/svx/source/svdraw/
H A Dsvdobj.cxx1132 basegfx::B2DPolyPolygon SdrObject::TakeXorPoly() const in TakeXorPoly()
1134 basegfx::B2DPolyPolygon aRetval; in TakeXorPoly()
1144 basegfx::B2DPolyPolygon aRetval; in TakeContour()
1395 return basegfx::B2DPolyPolygon(); in getSpecialDragPoly()
1454 basegfx::B2DPolyPolygon aRetval; in TakeCreatePoly()
2436 basegfx::B2DPolygonVector& rExtractedHairlines, in extractLineContourFromPrimitive2DSequence()
3029 sal_Bool SdrObject::TRGetBaseGeometry(basegfx::B2DHomMatrix& rMatrix, basegfx::B2DPolyPolygon& /*rP… in TRGetBaseGeometry()
3081 void SdrObject::TRSetBaseGeometry(const basegfx::B2DHomMatrix& rMatrix, const basegfx::B2DPolyPolyg… in TRSetBaseGeometry()
3084 basegfx::B2DTuple aScale; in TRSetBaseGeometry()
3085 basegfx::B2DTuple aTranslate; in TRSetBaseGeometry()
[all …]
/trunk/main/drawinglayer/inc/drawinglayer/primitive3d/
H A Dsdrextrudeprimitive3d.hxx52 basegfx::B2DPolyPolygon maCorrectedPolyPolygon;
56 basegfx::B2DPolyPolygon maPolyPolygon;
85 const basegfx::B3DHomMatrix& rTransform,
86 const basegfx::B2DVector& rTextureSize,
89 const basegfx::B2DPolyPolygon& rPolyPolygon,
102 const basegfx::B2DPolyPolygon& getPolyPolygon() const { return maPolyPolygon; } in getPolyPolygon()
117 virtual basegfx::B3DRange getB3DRange(const geometry::ViewInformation3D& rViewInformation) const;

Completed in 148 milliseconds

1...<<11121314151617181920>>...50