/aoo41x/main/basegfx/inc/basegfx/point/ |
H A D | b3dhompoint.hxx | 304 inline B3DHomPoint minimum(const B3DHomPoint& rVecA, const B3DHomPoint& rVecB) in minimum() argument 307 std::min(rVecB.getX(), rVecA.getX()), in minimum() 308 std::min(rVecB.getY(), rVecA.getY()), in minimum() 309 std::min(rVecB.getZ(), rVecA.getZ())); in minimum() 312 inline B3DHomPoint maximum(const B3DHomPoint& rVecA, const B3DHomPoint& rVecB) in maximum() argument 315 std::max(rVecB.getX(), rVecA.getX()), in maximum() 316 std::max(rVecB.getY(), rVecA.getY()), in maximum() 317 std::max(rVecB.getZ(), rVecA.getZ())); in maximum() 367 inline B3DHomPoint operator+(const B3DHomPoint& rVecA, const B3DHomPoint& rVecB) in operator +() argument 370 aSum += rVecB; in operator +() [all …]
|
H A D | b2dhompoint.hxx | 273 inline B2DHomPoint minimum(const B2DHomPoint& rVecA, const B2DHomPoint& rVecB) in minimum() argument 276 std::min(rVecB.getX(), rVecA.getX()), in minimum() 277 std::min(rVecB.getY(), rVecA.getY())); in minimum() 280 inline B2DHomPoint maximum(const B2DHomPoint& rVecA, const B2DHomPoint& rVecB) in maximum() argument 283 std::max(rVecB.getX(), rVecA.getX()), in maximum() 284 std::max(rVecB.getY(), rVecA.getY())); in maximum() 330 inline B2DHomPoint operator+(const B2DHomPoint& rVecA, const B2DHomPoint& rVecB) in operator +() argument 333 aSum += rVecB; in operator +() 337 inline B2DHomPoint operator-(const B2DHomPoint& rVecA, const B2DHomPoint& rVecB) in operator -() argument 340 aSub -= rVecB; in operator -()
|
/aoo41x/main/basegfx/inc/basegfx/vector/ |
H A D | b3dvector.hxx | 304 bool areParallel( const B3DVector& rVecA, const B3DVector& rVecB ); 324 inline B3DVector cross(const B3DVector& rVecA, const B3DVector& rVecB) in cross() argument 327 rVecA.getY() * rVecB.getZ() - rVecA.getZ() * rVecB.getY(), in cross() 328 rVecA.getZ() * rVecB.getX() - rVecA.getX() * rVecB.getZ(), in cross() 329 rVecA.getX() * rVecB.getY() - rVecA.getY() * rVecB.getX()); in cross()
|
H A D | b3ivector.hxx | 245 inline B3IVector cross(const B3IVector& rVecA, const B3IVector& rVecB) in cross() argument 248 rVecA.getY() * rVecB.getZ() - rVecA.getZ() * rVecB.getY(), in cross() 249 rVecA.getZ() * rVecB.getX() - rVecA.getX() * rVecB.getZ(), in cross() 250 rVecA.getX() * rVecB.getY() - rVecA.getY() * rVecB.getX()); in cross()
|
H A D | b2ivector.hxx | 184 B2VectorOrientation getOrientation( const B2IVector& rVecA, const B2IVector& rVecB ); 208 bool areParallel( const B2IVector& rVecA, const B2IVector& rVecB );
|
H A D | b2dvector.hxx | 208 B2VectorOrientation getOrientation( const B2DVector& rVecA, const B2DVector& rVecB ); 245 bool areParallel( const B2DVector& rVecA, const B2DVector& rVecB );
|
/aoo41x/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()
|
/aoo41x/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()
|
/aoo41x/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()
|