00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef QWT_CLIPPER_H
00011 #define QWT_CLIPPER_H
00012
00013 #include "qwt_global.h"
00014 #include "qwt_interval.h"
00015 #include <qpolygon.h>
00016 #include <qvector.h>
00017
00018 class QRect;
00019 class QRectF;
00020
00025 class QWT_EXPORT QwtClipper
00026 {
00027 public:
00028 static QPolygon clipPolygon( const QRect &, const QPolygon & );
00029 static QPolygonF clipPolygonF( const QRectF &, const QPolygonF & );
00030
00031 static QVector<QwtInterval> clipCircle(
00032 const QRectF &, const QPointF &, double radius );
00033 };
00034
00035 #endif