geometry.h
author insilmaril
Fri, 01 Feb 2008 15:28:35 +0000
changeset 661 6a5e2c27f8a4
parent 656 53ef954e90b6
child 662 9abdd5e6c3dc
permissions -rw-r--r--
Added brasilian translation by Amadeu Júnior
     1 #ifndef GEOMETRY_H
     2 #define GEOMETRY_H
     3 
     4 #include <QPointF>
     5 #include <QRectF>
     6 #include <QPolygonF>
     7 
     8 QRectF addBBox(QRectF r1, QRectF r2);
     9 bool inBox(const QPointF &p, const QRectF &box);
    10 
    11 QPointF normalize (const QPointF &p);
    12 
    13 #endif