| /trunk/main/basegfx/inc/basegfx/polygon/ ! |
| H A D | b3dpolygontools.hxx | 39 class B3DPolygon; 53 BASEGFX_DLLPUBLIC void checkClosed(B3DPolygon& rCandidate); 57 …BASEGFX_DLLPUBLIC sal_uInt32 getIndexOfPredecessor(sal_uInt32 nIndex, const B3DPolygon& rCandidate… 58 … BASEGFX_DLLPUBLIC sal_uInt32 getIndexOfSuccessor(sal_uInt32 nIndex, const B3DPolygon& rCandidate); 61 BASEGFX_DLLPUBLIC B2VectorOrientation getOrientation(const B3DPolygon& rCandidate); 64 BASEGFX_DLLPUBLIC B3DRange getRange(const B3DPolygon& rCandidate); 67 BASEGFX_DLLPUBLIC B3DVector getNormal(const B3DPolygon& rCandidate); 70 BASEGFX_DLLPUBLIC B3DVector getPositiveOrientedNormal(const B3DPolygon& rCandidate); 73 BASEGFX_DLLPUBLIC double getSignedArea(const B3DPolygon& rCandidate); 76 BASEGFX_DLLPUBLIC double getArea(const B3DPolygon& rCandidate); [all …]
|
| H A D | b3dpolygon.hxx | 37 class B3DPolygon; 50 class BASEGFX_DLLPUBLIC B3DPolygon class 60 B3DPolygon(); 61 B3DPolygon(const B3DPolygon& rPolygon); 62 B3DPolygon(const B3DPolygon& rPolygon, sal_uInt32 nIndex, sal_uInt32 nCount); 63 ~B3DPolygon(); 66 B3DPolygon& operator=(const B3DPolygon& rPolygon); 72 bool operator==(const B3DPolygon& rPolygon) const; 73 bool operator!=(const B3DPolygon& rPolygon) const; 108 …void insert(sal_uInt32 nIndex, const B3DPolygon& rPoly, sal_uInt32 nIndex2 = 0, sal_uInt32 nCount … [all …]
|
| H A D | b3dpolypolygon.hxx | 36 class B3DPolygon; 56 explicit B3DPolyPolygon(const B3DPolygon& rPolygon); 73 B3DPolygon getB3DPolygon(sal_uInt32 nIndex) const; 74 void setB3DPolygon(sal_uInt32 nIndex, const B3DPolygon& rPolygon); 91 void insert(sal_uInt32 nIndex, const B3DPolygon& rPolygon, sal_uInt32 nCount = 1); 92 void append(const B3DPolygon& rPolygon, sal_uInt32 nCount = 1);
|
| H A D | b3dpolygonclipper.hxx | 58 …BASEGFX_DLLPUBLIC B3DPolyPolygon clipPolygonOnOrthogonalPlane(const B3DPolygon& rCandidate, B3DOri… 66 …BASEGFX_DLLPUBLIC B3DPolyPolygon clipPolygonOnRange(const B3DPolygon& rCandidate, const B3DRange& … 70 …BASEGFX_DLLPUBLIC B3DPolyPolygon clipPolygonOnRange(const B3DPolygon& rCandidate, const B2DRange& … 78 …BASEGFX_DLLPUBLIC B3DPolyPolygon clipPolygonOnPlane(const B3DPolygon& rCandidate, const B3DPoint& …
|
| H A D | b2dpolygontools.hxx | 343 …BASEGFX_DLLPUBLIC B3DPolygon createB3DPolygonFromB2DPolygon(const B2DPolygon& rCandidate, double f… 347 …BASEGFX_DLLPUBLIC B2DPolygon createB2DPolygonFromB3DPolygon(const B3DPolygon& rCandidate, const B3…
|
| /trunk/main/basegfx/source/polygon/ ! |
| H A D | b3dpolygon.cxx | 1534 namespace { struct DefaultPolygon : public rtl::Static< B3DPolygon::ImplType, 1537 B3DPolygon::B3DPolygon() : in B3DPolygon() function in basegfx::B3DPolygon 1542 B3DPolygon::B3DPolygon(const B3DPolygon& rPolygon) : in B3DPolygon() function in basegfx::B3DPolygon 1547 B3DPolygon::B3DPolygon(const B3DPolygon& rPolygon, sal_uInt32 nIndex, sal_uInt32 nCount) : in B3DPolygon() function in basegfx::B3DPolygon 1555 B3DPolygon::~B3DPolygon() in ~B3DPolygon() 1559 B3DPolygon& B3DPolygon::operator=(const B3DPolygon& rPolygon) in operator =() 1565 void B3DPolygon::makeUnique() in makeUnique() 1570 bool B3DPolygon::operator==(const B3DPolygon& rPolygon) const in operator ==() 1578 bool B3DPolygon::operator!=(const B3DPolygon& rPolygon) const in operator !=() 1583 sal_uInt32 B3DPolygon::count() const in count() [all …]
|
| H A D | b3dpolygontools.cxx | 45 void checkClosed(B3DPolygon& rCandidate) in checkClosed() 57 sal_uInt32 getIndexOfPredecessor(sal_uInt32 nIndex, const B3DPolygon& rCandidate) in getIndexOfPredecessor() 75 sal_uInt32 getIndexOfSuccessor(sal_uInt32 nIndex, const B3DPolygon& rCandidate) in getIndexOfSuccessor() 89 B3DRange getRange(const B3DPolygon& rCandidate) in getRange() 103 B3DVector getNormal(const B3DPolygon& rCandidate) in getNormal() 108 B3DVector getPositiveOrientedNormal(const B3DPolygon& rCandidate) in getPositiveOrientedNormal() 120 B2VectorOrientation getOrientation(const B3DPolygon& rCandidate) in getOrientation() 141 double getSignedArea(const B3DPolygon& rCandidate) in getSignedArea() 206 double getArea(const B3DPolygon& rCandidate) in getArea() 224 double getEdgeLength(const B3DPolygon& rCandidate, sal_uInt32 nIndex) in getEdgeLength() [all …]
|
| H A D | b3dpolypolygon.cxx | 40 typedef ::std::vector< ::basegfx::B3DPolygon > PolygonVector; 49 ImplB3DPolyPolygon(const ::basegfx::B3DPolygon& rToBeCopied) : in ImplB3DPolyPolygon() 67 const ::basegfx::B3DPolygon& getB3DPolygon(sal_uInt32 nIndex) const in getB3DPolygon() 72 void setB3DPolygon(sal_uInt32 nIndex, const ::basegfx::B3DPolygon& rPolygon) in setB3DPolygon() 77 void insert(sal_uInt32 nIndex, const ::basegfx::B3DPolygon& rPolygon, sal_uInt32 nCount) in insert() 137 std::mem_fun_ref( &::basegfx::B3DPolygon::flip )); in flip() 144 std::mem_fun_ref( &::basegfx::B3DPolygon::removeDoublePoints )); in removeDoublePoints() 199 std::mem_fun_ref( &::basegfx::B3DPolygon::makeUnique )); in makeUnique() 220 B3DPolyPolygon::B3DPolyPolygon(const B3DPolygon& rPolygon) : in B3DPolyPolygon() 259 B3DPolygon B3DPolyPolygon::getB3DPolygon(sal_uInt32 nIndex) const in getB3DPolygon() [all …]
|
| H A D | b3dpolygonclipper.cxx | 76 void impAppendCopy(B3DPolygon& rDest, const B3DPolygon& rSource, sal_uInt32 nIndex) in impAppendCopy() 96 …void impAppendInterpolate(B3DPolygon& rDest, const B3DPolygon& rSource, sal_uInt32 nIndA, sal_uInt… in impAppendInterpolate() 132 …B3DPolyPolygon clipPolygonOnOrthogonalPlane(const B3DPolygon& rCandidate, B3DOrientation ePlaneOrt… in clipPolygonOnOrthogonalPlane() 197 B3DPolygon aNewPolygon; in clipPolygonOnOrthogonalPlane() 319 …B3DPolyPolygon clipPolygonOnRange(const B3DPolygon& rCandidate, const B2DRange& rRange, bool bInsi… in clipPolygonOnRange() 417 …B3DPolyPolygon clipPolygonOnRange(const B3DPolygon& rCandidate, const B3DRange& rRange, bool bInsi… in clipPolygonOnRange() 487 …B3DPolyPolygon clipPolygonOnPlane(const B3DPolygon& rCandidate, const B3DPoint& rPointOnPlane, con… in clipPolygonOnPlane() 509 B3DPolygon aCandidate(rCandidate); in clipPolygonOnPlane()
|
| H A D | b3dpolypolygontools.cxx | 52 B3DPolygon aCandidate = rCandidate.getB3DPolygon(a); in getRange() 73 const B3DPolygon aCandidate(rCandidate.getB3DPolygon(a)); in applyLineDashing() 102 B3DPolygon aTemp; in createUnitCubePolyPolygon() 149 B3DPolygon aTemp; in createUnitCubeFillPolyPolygon() 299 B3DPolygon aNew; in createUnitSpherePolyPolygon() 315 B3DPolygon aNew; in createUnitSpherePolyPolygon() 394 B3DPolygon aNew; in createUnitSphereFillPolyPolygon() 500 const B3DPolygon aPolygon(rCandidate.getB3DPolygon(a)); in isInside() 524 const B3DPolygon aCandidate(rCandidateA.getB3DPolygon(a)); in equal() 560 basegfx::B3DPolygon aNewPolygon; in UnoPolyPolygonShape3DToB3DPolyPolygon() [all …]
|
| /trunk/main/drawinglayer/inc/drawinglayer/primitive3d/ ! |
| H A D | polygonprimitive3d.hxx | 52 basegfx::B3DPolygon maPolygon; 60 const basegfx::B3DPolygon& rPolygon, 64 const basegfx::B3DPolygon& getB3DPolygon() const { return maPolygon; } in getB3DPolygon() 95 basegfx::B3DPolygon maPolygon; 110 const basegfx::B3DPolygon& rPolygon, 116 const basegfx::B3DPolygon& rPolygon, 120 basegfx::B3DPolygon getB3DPolygon() const { return maPolygon; } in getB3DPolygon()
|
| H A D | sdrlatheprimitive3d.hxx | 84 const basegfx::B3DPolygon& rLoopA, 85 const basegfx::B3DPolygon& rLoopB,
|
| H A D | sdrextrudelathetools3d.hxx | 129 const basegfx::B3DPolygon& rLoopA, 130 const basegfx::B3DPolygon& rLoopB,
|
| /trunk/main/drawinglayer/source/primitive3d/ ! |
| H A D | sdrextrudelathetools3d.cxx | 120 const basegfx::B3DPolygon aSubA(rPolA.getB3DPolygon(a)); in impAddInBetweenFill() 121 const basegfx::B3DPolygon aSubB(rPolB.getB3DPolygon(a)); in impAddInBetweenFill() 150 basegfx::B3DPolygon aNew; in impAddInBetweenFill() 196 basegfx::B3DPolygon aSub(rCandidate.getB3DPolygon(a)); in impSetNormal() 217 basegfx::B3DPolygon aSubA(rPolA.getB3DPolygon(a)); in impCreateInBetweenNormals() 218 basegfx::B3DPolygon aSubB(rPolB.getB3DPolygon(a)); in impCreateInBetweenNormals() 301 basegfx::B3DPolygon aSubA(rPolA.getB3DPolygon(a)); in impMixNormals() 302 const basegfx::B3DPolygon aSubB(rPolB.getB3DPolygon(a)); in impMixNormals() 537 basegfx::B3DPolygon aNew; in extractHorizontalLinesFromSlice() 901 const basegfx::B3DPolygon& rLoopA, in createReducedOutlines() [all …]
|
| H A D | sdrextrudeprimitive3d.cxx | 163 const basegfx::B3DPolygon aCandidate(aVerLine.getB3DPolygon(a)); in create3DDecomposition() 191 … const basegfx::B3DPolygon aCandA(aReducedLoops.getB3DPolygon(b - 1)); in create3DDecomposition() 192 const basegfx::B3DPolygon aCandB(aReducedLoops.getB3DPolygon(b)); in create3DDecomposition() 295 basegfx::B3DPolygon aToBeAdded; in create3DDecomposition() 307 basegfx::B3DPolygon aToBeAdded; in create3DDecomposition() 319 basegfx::B3DPolygon aToBeAdded; in create3DDecomposition()
|
| H A D | polygonprimitive3d.cxx | 45 const basegfx::B3DPolygon& rPolygon, in PolygonHairlinePrimitive3D() 129 … const basegfx::B3DPolygon aCandidate = aHairLinePolyPolygon.getB3DPolygon(a); in create3DDecomposition() 140 const basegfx::B3DPolygon& rPolygon, in PolygonStrokePrimitive3D() 151 const basegfx::B3DPolygon& rPolygon, in PolygonStrokePrimitive3D()
|
| H A D | polygontubeprimitive3d.cxx | 77 basegfx::B3DPolygon aNewPolygon; in getLineTubeSegments() 135 basegfx::B3DPolygon aNewPolygon; in getLineCapSegments() 213 const basegfx::B3DPolygon aPartPolygon(aSphere.getB3DPolygon(a)); in getLineCapRoundSegments() 255 const basegfx::B3DPolygon aPartPolygon(aSphere.getB3DPolygon(a)); in getLineJoinSegments() 292 basegfx::B3DPolygon aNewPolygon, aMiterPolygon; in getLineJoinSegments() 684 const basegfx::B3DPolygon& rPolygon, in PolygonTubePrimitive3D()
|
| /trunk/main/basegfx/source/raster/ ! |
| H A D | rasterconvert3d.cxx | 34 void RasterConverter3D::addArea(const B3DPolygon& rFill, const B3DHomMatrix* pViewToEye) in addArea() 158 …void RasterConverter3D::addEdge(const B3DPolygon& rFill, sal_uInt32 a, sal_uInt32 b, const B3DHomM… in addEdge() 217 …void RasterConverter3D::rasterconvertB3DEdge(const B3DPolygon& rLine, sal_uInt32 nA, sal_uInt32 nB… in rasterconvertB3DEdge() 239 B3DPolygon aPolygon; in rasterconvertB3DEdge() 329 …void RasterConverter3D::rasterconvertB3DPolygon(const B3DPolygon& rLine, sal_Int32 nStartLine, sal… in rasterconvertB3DPolygon()
|
| /trunk/main/basegfx/inc/basegfx/raster/ ! |
| H A D | rasterconvert3d.hxx | 40 class B3DPolygon; 432 void addArea(const B3DPolygon& rFill, const B3DHomMatrix* pViewToEye); 434 … void addEdge(const B3DPolygon& rFill, sal_uInt32 a, sal_uInt32 b, const B3DHomMatrix* pViewToEye); 437 …void rasterconvertB3DEdge(const B3DPolygon& rLine, sal_uInt32 nA, sal_uInt32 nB, sal_Int32 nStartL… 446 …void rasterconvertB3DPolygon(const B3DPolygon& rLine, sal_Int32 nStartLine, sal_Int32 nStopLine, s…
|
| /trunk/main/svx/source/engine3d/ ! |
| H A D | polygn3d.cxx | 136 const basegfx::B3DPolygon aPolygon(aPolyPoly3D.getB3DPolygon(a)); in CreateDefaultNormals() 139 basegfx::B3DPolygon aNormals; in CreateDefaultNormals() 174 const basegfx::B3DPolygon& aPolygon(aPolyPoly3D.getB3DPolygon(a)); in CreateDefaultTexture()
|
| H A D | helperminimaldepth3d.cxx | 96 const basegfx::B3DPolygon& rPolygon = rPrimitive.getB3DPolygon(); in processBasePrimitive3D() 120 const basegfx::B3DPolygon aPolygon(rPolyPolygon.getB3DPolygon(a)); in processBasePrimitive3D()
|
| /trunk/main/svx/source/customshapes/ ! |
| H A D | EnhancedCustomShape3d.hxx | 59 basegfx::B3DPolygon ApplySkewSettings( const basegfx::B3DPolygon& rPolygon3D ) const;
|
| H A D | EnhancedCustomShape3d.cxx | 237 basegfx::B3DPolygon EnhancedCustomShape3d::Transformation2D::ApplySkewSettings( const basegfx::B3DP… in ApplySkewSettings() 239 basegfx::B3DPolygon aRetval; in ApplySkewSettings() 793 basegfx::B3DPolygon aBoundVolume; in CalculateNewSnapRect()
|
| /trunk/main/drawinglayer/inc/drawinglayer/processor3d/ ! |
| H A D | defaultprocessor3d.hxx | 40 class B3DPolygon; 125 …olygon(const attribute::MaterialAttribute3D& rMaterial, const basegfx::B3DPolygon& rHairline) cons…
|
| /trunk/main/svx/source/sdr/contact/ ! |
| H A D | viewcontactofe3dpolygon.cxx | 69 basegfx::B3DPolygon aCandidate3D(aPolyPolygon3D.getB3DPolygon(a)); in createViewIndependentPrimitive3DSequence() 70 basegfx::B3DPolygon aNormals3D; in createViewIndependentPrimitive3DSequence()
|