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