37 :
x(xValue),
y(yValue)
42 return x == other.
x &&
y == other.
y;
47 return !(*
this == other);
52 return "[" + std::to_string(
x) +
" ; " + std::to_string(
y) +
"]";
Coordonnée plane en mètres dans un système métrique (UTM ou similaire).
Definition CoordinateXY.h:23
double x
Abscisse en mètres (est pour UTM).
Definition CoordinateXY.h:25
bool operator!=(const CoordinateXY &other) const
Definition CoordinateXY.h:45
CoordinateXY(double xValue, double yValue)
Construit une coordonnée avec les valeurs fournies.
Definition CoordinateXY.h:36
std::string toString() const
Definition CoordinateXY.h:50
bool operator==(const CoordinateXY &other) const
Definition CoordinateXY.h:40
double y
Ordonnée en mètres (nord pour UTM).
Definition CoordinateXY.h:26