1 | initial version |
in file types.hpp you can find :
typedef Point_<int> Point2i;
typedef Point_<float> Point2f;
typedef Point_<double> Point2d;
typedef Point2i Point;
Point is for ineger coordinates and Point2f for floating point values
2 | No.2 Revision |
in file types.hpp you can find :
typedef Point_<int> Point2i;
typedef Point_<float> Point2f;
typedef Point_<double> Point2d;
typedef Point2i Point;
Point is for ineger integer coordinates and Point2f for floating point values