diff options
author | Elton Chung <elton@layerjet.com> | 2012-02-20 00:30:16 +0800 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-02-20 12:08:10 +0000 |
commit | dbff99a60ec5268c92f1404cb01754de9186c2e8 (patch) | |
tree | 20236b586ab80745426b4e51f0b8df56bdfcb0d0 /basegfx/inc/basegfx/tools | |
parent | 9846e25d94d6029f3a0726ae35e96db342506c80 (diff) |
Remove unused code
Diffstat (limited to 'basegfx/inc/basegfx/tools')
-rw-r--r-- | basegfx/inc/basegfx/tools/tools.hxx | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/basegfx/inc/basegfx/tools/tools.hxx b/basegfx/inc/basegfx/tools/tools.hxx index c6abc5780ad8..f4ff85d48a05 100644 --- a/basegfx/inc/basegfx/tools/tools.hxx +++ b/basegfx/inc/basegfx/tools/tools.hxx @@ -39,30 +39,6 @@ namespace basegfx namespace tools { - /** Liang-Barsky 2D line clipping algorithm - - This function clips a line given by two points against the - given rectangle. The resulting line is returned in the - given points. - - @param io_rStart - Start point of the line. On return, contains the clipped - start point. - - @param io_rEnd - End point of the line. On return, contains the clipped - end point. - - @param rClipRect - The rectangle to clip against - - @return true, when at least part of the line is visible - after the clip, false otherwise - */ - BASEGFX_DLLPUBLIC bool liangBarskyClip2D( ::basegfx::B2DPoint& io_rStart, - ::basegfx::B2DPoint& io_rEnd, - const ::basegfx::B2DRange& rClipRect ); - /** Expand given parallelogram, such that it extends beyond bound rect in a given direction. |