Lines Matching refs:rResult
348 void PolyPolygon::AdaptiveSubdivide( PolyPolygon& rResult, const double d ) const in AdaptiveSubdivide() argument
352 rResult.Clear(); in AdaptiveSubdivide()
359 rResult.Insert( aPolygon ); in AdaptiveSubdivide()
365 void PolyPolygon::GetIntersection( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const in GetIntersection()
367 ImplDoOperation( rPolyPoly, rResult, POLY_CLIP_INT ); in GetIntersection()
372 void PolyPolygon::GetUnion( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const in GetUnion()
374 ImplDoOperation( rPolyPoly, rResult, POLY_CLIP_UNION ); in GetUnion()
379 void PolyPolygon::GetDifference( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const in GetDifference()
381 ImplDoOperation( rPolyPoly, rResult, POLY_CLIP_DIFF ); in GetDifference()
386 void PolyPolygon::GetXOR( const PolyPolygon& rPolyPoly, PolyPolygon& rResult ) const in GetXOR()
388 ImplDoOperation( rPolyPoly, rResult, POLY_CLIP_XOR ); in GetXOR()
393 void PolyPolygon::ImplDoOperation( const PolyPolygon& rPolyPoly, PolyPolygon& rResult, sal_uIntPtr … in ImplDoOperation() argument
441 rResult = PolyPolygon( aMergePolyPolygonA ); in ImplDoOperation()