3#include "math/geometry/transform2d.h"
17 double width()
const {
return max.
x() - min.x(); }
18 double height()
const {
return max.y() - min.y(); }
20 bool xin = p.
x() > min.x() && p.
x() < max.x();
21 bool yin = p.
y() > min.y() && p.
y() < max.y();
Definition translation2d.h:22
double x() const
Definition translation2d.cpp:37
double y() const
Definition translation2d.cpp:44