geometry.h
author insilmaril
Wed, 16 Jan 2008 15:45:19 +0000
changeset 655 d4b49c6c6069
parent 650 65c5a0c28d20
child 656 53ef954e90b6
permissions -rw-r--r--
Fixed missing MapCenter
     1 #ifndef GEOMETRY_H
     2 #define GEOMETRY_H
     3 
     4 #include <QRectF>
     5 
     6 QRectF addBBox(QRectF r1, QRectF r2);
     7 bool inBox(const QPointF &p, const QRectF &box);
     8 
     9 
    10 #endif