/aoo42x/main/basegfx/inc/basegfx/point/ |
H A D | b3dhompoint.hxx | 305 inline B3DHomPoint minimum(const B3DHomPoint& rVecA, const B3DHomPoint& rVecB) in minimum() argument 308 std::min(rVecB.getX(), rVecA.getX()), in minimum() 309 std::min(rVecB.getY(), rVecA.getY()), in minimum() 310 std::min(rVecB.getZ(), rVecA.getZ())); in minimum() 313 inline B3DHomPoint maximum(const B3DHomPoint& rVecA, const B3DHomPoint& rVecB) in maximum() argument 316 std::max(rVecB.getX(), rVecA.getX()), in maximum() 317 std::max(rVecB.getY(), rVecA.getY()), in maximum() 318 std::max(rVecB.getZ(), rVecA.getZ())); in maximum() 368 inline B3DHomPoint operator+(const B3DHomPoint& rVecA, const B3DHomPoint& rVecB) in operator +() argument 371 aSum += rVecB; in operator +() [all …]
|
H A D | b2dhompoint.hxx | 274 inline B2DHomPoint minimum(const B2DHomPoint& rVecA, const B2DHomPoint& rVecB) in minimum() argument 277 std::min(rVecB.getX(), rVecA.getX()), in minimum() 278 std::min(rVecB.getY(), rVecA.getY())); in minimum() 281 inline B2DHomPoint maximum(const B2DHomPoint& rVecA, const B2DHomPoint& rVecB) in maximum() argument 284 std::max(rVecB.getX(), rVecA.getX()), in maximum() 285 std::max(rVecB.getY(), rVecA.getY())); in maximum() 331 inline B2DHomPoint operator+(const B2DHomPoint& rVecA, const B2DHomPoint& rVecB) in operator +() argument 334 aSum += rVecB; in operator +() 338 inline B2DHomPoint operator-(const B2DHomPoint& rVecA, const B2DHomPoint& rVecB) in operator -() argument 341 aSub -= rVecB; in operator -()
|
/aoo42x/main/basegfx/inc/basegfx/vector/ |
H A D | b3dvector.hxx | 305 BASEGFX_DLLPUBLIC bool areParallel( const B3DVector& rVecA, const B3DVector& rVecB ); 325 inline B3DVector cross(const B3DVector& rVecA, const B3DVector& rVecB) in cross() argument 328 rVecA.getY() * rVecB.getZ() - rVecA.getZ() * rVecB.getY(), in cross() 329 rVecA.getZ() * rVecB.getX() - rVecA.getX() * rVecB.getZ(), in cross() 330 rVecA.getX() * rVecB.getY() - rVecA.getY() * rVecB.getX()); in cross()
|
H A D | b3ivector.hxx | 246 inline B3IVector cross(const B3IVector& rVecA, const B3IVector& rVecB) in cross() argument 249 rVecA.getY() * rVecB.getZ() - rVecA.getZ() * rVecB.getY(), in cross() 250 rVecA.getZ() * rVecB.getX() - rVecA.getX() * rVecB.getZ(), in cross() 251 rVecA.getX() * rVecB.getY() - rVecA.getY() * rVecB.getX()); in cross()
|
H A D | b2ivector.hxx | 185 …GFX_DLLPUBLIC B2VectorOrientation getOrientation( const B2IVector& rVecA, const B2IVector& rVecB ); 209 BASEGFX_DLLPUBLIC bool areParallel( const B2IVector& rVecA, const B2IVector& rVecB );
|
H A D | b2dvector.hxx | 209 …GFX_DLLPUBLIC B2VectorOrientation getOrientation( const B2DVector& rVecA, const B2DVector& rVecB ); 246 BASEGFX_DLLPUBLIC bool areParallel( const B2DVector& rVecA, const B2DVector& rVecB );
|
/aoo42x/main/basegfx/source/vector/ |
H A D | b3dvector.cxx | 96 bool areParallel( const B3DVector& rVecA, const B3DVector& rVecB ) in areParallel() argument 99 if(!fTools::equal(rVecA.getX() * rVecB.getY(), rVecA.getY() * rVecB.getX())) in areParallel() 102 if(!fTools::equal(rVecA.getX() * rVecB.getZ(), rVecA.getZ() * rVecB.getX())) in areParallel() 105 return (fTools::equal(rVecA.getY() * rVecB.getZ(), rVecA.getZ() * rVecB.getY())); in areParallel()
|
H A D | b2ivector.cxx | 96 bool areParallel( const B2IVector& rVecA, const B2IVector& rVecB ) in areParallel() argument 98 double fVal(rVecA.getX() * rVecB.getY() - rVecA.getY() * rVecB.getX()); in areParallel() 102 B2VectorOrientation getOrientation( const B2IVector& rVecA, const B2IVector& rVecB ) in getOrientation() argument 104 double fVal(rVecA.getX() * rVecB.getY() - rVecA.getY() * rVecB.getX()); in getOrientation()
|
H A D | b2dvector.cxx | 143 bool areParallel( const B2DVector& rVecA, const B2DVector& rVecB ) in areParallel() argument 145 const double fValA(rVecA.getX() * rVecB.getY()); in areParallel() 146 const double fValB(rVecA.getY() * rVecB.getX()); in areParallel() 151 B2VectorOrientation getOrientation( const B2DVector& rVecA, const B2DVector& rVecB ) in getOrientation() argument 153 double fVal(rVecA.getX() * rVecB.getY() - rVecA.getY() * rVecB.getX()); in getOrientation()
|
/aoo42x/main/canvas/source/tools/ |
H A D | spriteredrawmanager.cxx | 327 …bool impIsEqualB2DVector(const basegfx::B2DVector& rVecA, const basegfx::B2DVector& rVecB, double … in impIsEqualB2DVector() argument 329 return fabs(rVecB.getX() - rVecA.getX()) <= fSmallValue in impIsEqualB2DVector() 330 && fabs(rVecB.getY() - rVecA.getY()) <= fSmallValue; in impIsEqualB2DVector()
|
/aoo42x/main/basegfx/source/polygon/ |
H A D | b2dpolypolygoncutter.cxx | 159 bool impLeftOfEdges(const B2DVector& rVecA, const B2DVector& rVecB, const B2DVector& rTest) in impLeftOfEdges() argument 163 if(rVecA.cross(rVecB) > 0.0) in impLeftOfEdges() 167 const bool bBoolB(fTools::lessOrEqual(rVecB.cross(rTest), 0.0)); in impLeftOfEdges() 175 const bool bBoolB(fTools::moreOrEqual(rVecB.cross(rTest), 0.0)); in impLeftOfEdges()
|