1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 29*cdf0e10cSrcweir #include "precompiled_basegfx.hxx" 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #include "basegfx/tools/tools.hxx" 32*cdf0e10cSrcweir #include "basegfx/numeric/ftools.hxx" 33*cdf0e10cSrcweir #include "basegfx/range/b2drange.hxx" 34*cdf0e10cSrcweir 35*cdf0e10cSrcweir 36*cdf0e10cSrcweir namespace basegfx 37*cdf0e10cSrcweir { 38*cdf0e10cSrcweir namespace tools 39*cdf0e10cSrcweir { 40*cdf0e10cSrcweir namespace 41*cdf0e10cSrcweir { 42*cdf0e10cSrcweir // see Foley/vanDam, pp. 122 for the Liang-Barsky line 43*cdf0e10cSrcweir // clipping algorithm 44*cdf0e10cSrcweir inline bool liangBarskyClipT( double nDenom, 45*cdf0e10cSrcweir double nNumerator, 46*cdf0e10cSrcweir double& io_rTE, 47*cdf0e10cSrcweir double& io_rTL ) 48*cdf0e10cSrcweir { 49*cdf0e10cSrcweir double t; 50*cdf0e10cSrcweir if( nDenom > 0 ) 51*cdf0e10cSrcweir { 52*cdf0e10cSrcweir t = nNumerator / nDenom; 53*cdf0e10cSrcweir if( t > io_rTL ) 54*cdf0e10cSrcweir return false; 55*cdf0e10cSrcweir else if( t > io_rTE ) 56*cdf0e10cSrcweir io_rTE = t; 57*cdf0e10cSrcweir } 58*cdf0e10cSrcweir else if( nDenom < 0 ) 59*cdf0e10cSrcweir { 60*cdf0e10cSrcweir t = nNumerator / nDenom; 61*cdf0e10cSrcweir if( t < io_rTE ) 62*cdf0e10cSrcweir return false; 63*cdf0e10cSrcweir else 64*cdf0e10cSrcweir io_rTL = t; 65*cdf0e10cSrcweir } 66*cdf0e10cSrcweir else if( nNumerator > 0 ) 67*cdf0e10cSrcweir { 68*cdf0e10cSrcweir return false; 69*cdf0e10cSrcweir } 70*cdf0e10cSrcweir 71*cdf0e10cSrcweir return true; 72*cdf0e10cSrcweir } 73*cdf0e10cSrcweir } 74*cdf0e10cSrcweir 75*cdf0e10cSrcweir // see Foley/vanDam, pp. 122 for the Liang-Barsky line 76*cdf0e10cSrcweir // clipping algorithm 77*cdf0e10cSrcweir bool liangBarskyClip2D( ::basegfx::B2DPoint& io_rStart, 78*cdf0e10cSrcweir ::basegfx::B2DPoint& io_rEnd, 79*cdf0e10cSrcweir const ::basegfx::B2DRange& rClipRect ) 80*cdf0e10cSrcweir { 81*cdf0e10cSrcweir const double nDX( io_rEnd.getX() - io_rStart.getX() ); 82*cdf0e10cSrcweir const double nDY( io_rEnd.getY() - io_rStart.getY() ); 83*cdf0e10cSrcweir 84*cdf0e10cSrcweir if( ::basegfx::fTools::equalZero( nDX ) && 85*cdf0e10cSrcweir ::basegfx::fTools::equalZero( nDY ) ) 86*cdf0e10cSrcweir { 87*cdf0e10cSrcweir return rClipRect.isInside( io_rStart ); 88*cdf0e10cSrcweir } 89*cdf0e10cSrcweir else 90*cdf0e10cSrcweir { 91*cdf0e10cSrcweir double nTE( 0.0 ); 92*cdf0e10cSrcweir double nTL( 1.0 ); 93*cdf0e10cSrcweir if( liangBarskyClipT(nDX, rClipRect.getMinX() - io_rStart.getX(), 94*cdf0e10cSrcweir nTE, nTL ) ) // inside wrt. left edge 95*cdf0e10cSrcweir { 96*cdf0e10cSrcweir if( liangBarskyClipT(-nDX, io_rStart.getX() - rClipRect.getMaxX(), 97*cdf0e10cSrcweir nTE, nTL ) ) // inside wrt. right edge 98*cdf0e10cSrcweir { 99*cdf0e10cSrcweir if( liangBarskyClipT(nDY, rClipRect.getMinY() - io_rStart.getY(), 100*cdf0e10cSrcweir nTE, nTL ) ) // inside wrt. bottom edge 101*cdf0e10cSrcweir { 102*cdf0e10cSrcweir if( liangBarskyClipT(-nDY, io_rStart.getY() - rClipRect.getMaxY(), 103*cdf0e10cSrcweir nTE, nTL ) ) // inside wrt. top edge 104*cdf0e10cSrcweir { 105*cdf0e10cSrcweir // compute actual intersection points, 106*cdf0e10cSrcweir // if nTL has changed 107*cdf0e10cSrcweir if( nTL < 1.0 ) 108*cdf0e10cSrcweir { 109*cdf0e10cSrcweir io_rEnd.setX( io_rStart.getX() + nTL*nDX ); 110*cdf0e10cSrcweir io_rEnd.setY( io_rStart.getY() + nTL*nDY ); 111*cdf0e10cSrcweir } 112*cdf0e10cSrcweir 113*cdf0e10cSrcweir // compute actual intersection points, 114*cdf0e10cSrcweir // if nTE has changed 115*cdf0e10cSrcweir if( nTE > 0.0 ) 116*cdf0e10cSrcweir { 117*cdf0e10cSrcweir io_rStart.setX( io_rStart.getX() + nTE*nDX ); 118*cdf0e10cSrcweir io_rStart.setY( io_rStart.getY() + nTE*nDY ); 119*cdf0e10cSrcweir } 120*cdf0e10cSrcweir 121*cdf0e10cSrcweir // line is (at least partially) visible 122*cdf0e10cSrcweir return true; 123*cdf0e10cSrcweir } 124*cdf0e10cSrcweir } 125*cdf0e10cSrcweir } 126*cdf0e10cSrcweir } 127*cdf0e10cSrcweir } 128*cdf0e10cSrcweir 129*cdf0e10cSrcweir return false; 130*cdf0e10cSrcweir } 131*cdf0e10cSrcweir } 132*cdf0e10cSrcweir } 133