Home
last modified time | relevance | path

Searched refs:rVecA (Results 1 – 11 of 11) sorted by relevance

/trunk/main/basegfx/inc/basegfx/point/
H A Db3dhompoint.hxx305 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
370 B3DHomPoint aSum(rVecA); in operator +()
[all …]
H A Db2dhompoint.hxx274 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
333 B2DHomPoint aSum(rVecA); in operator +()
338 inline B2DHomPoint operator-(const B2DHomPoint& rVecA, const B2DHomPoint& rVecB) in operator -() argument
340 B2DHomPoint aSub(rVecA); in operator -()
/trunk/main/basegfx/inc/basegfx/vector/
H A Db3dvector.hxx305 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 Db3ivector.hxx246 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 Db2ivector.hxx185 …BASEGFX_DLLPUBLIC B2VectorOrientation getOrientation( const B2IVector& rVecA, const B2IVector& rVe…
209 BASEGFX_DLLPUBLIC bool areParallel( const B2IVector& rVecA, const B2IVector& rVecB );
H A Db2dvector.hxx209 …BASEGFX_DLLPUBLIC B2VectorOrientation getOrientation( const B2DVector& rVecA, const B2DVector& rVe…
246 BASEGFX_DLLPUBLIC bool areParallel( const B2DVector& rVecA, const B2DVector& rVecB );
/trunk/main/basegfx/source/vector/
H A Db3dvector.cxx96 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 Db2ivector.cxx96 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 Db2dvector.cxx143 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()
/trunk/main/canvas/source/tools/
H A Dspriteredrawmanager.cxx327 …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()
/trunk/main/basegfx/source/polygon/
H A Db2dpolypolygoncutter.cxx159 bool impLeftOfEdges(const B2DVector& rVecA, const B2DVector& rVecB, const B2DVector& rTest) in impLeftOfEdges() argument
163 if(rVecA.cross(rVecB) > 0.0) in impLeftOfEdges()
166 const bool bBoolA(fTools::moreOrEqual(rVecA.cross(rTest), 0.0)); in impLeftOfEdges()
174 const bool bBoolA(fTools::lessOrEqual(rVecA.cross(rTest), 0.0)); in impLeftOfEdges()

Completed in 52 milliseconds