2024-11-06 17:02:59 -07:00
|
|
|
#include "Coordinate.h"
|
|
|
|
|
|
|
|
Coordinate::Coordinate() {
|
2024-11-18 00:18:28 -07:00
|
|
|
x = 0;
|
|
|
|
y = 0;
|
2024-11-06 17:02:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Coordinate::Coordinate(const double X, const double Y) {
|
2024-11-18 00:18:28 -07:00
|
|
|
x = X;
|
|
|
|
y = Y;
|
2024-11-06 17:02:59 -07:00
|
|
|
}
|