diff options
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/rectangle.hpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/utils/rectangle.hpp b/src/utils/rectangle.hpp index f3f4477d..b1e67ba8 100644 --- a/src/utils/rectangle.hpp +++ b/src/utils/rectangle.hpp @@ -27,8 +27,6 @@ #ifndef RECTANGLE_HPP #define RECTANGLE_HPP -#include <ftgl.h> - #include "point.hpp" #include "dimension.hpp" #include "math.hpp" @@ -66,18 +64,6 @@ namespace usdx { } - Rectangle(const T rectangle[]) : - point1(rectangle[0], rectangle[1]), - point2(rectangle[0] + rectangle[2], rectangle[1] + rectangle[3]) - { - } - - Rectangle(const FTBBox& bbox) : - point1((T)bbox.Upper().X(), (T)bbox.Upper().Y()), - point2((T)bbox.Lower().X(), (T)bbox.Lower().Y()) - { - } - Rectangle(const Rectangle<T>& rectangle) : point1(rectangle.point1), point2(rectangle.point2) { |