GCS: Add convenience point constructor

This commit is contained in:
Abdullah Tahiri
2018-06-08 17:05:23 +02:00
committed by wmayer
parent 9c320b8c5f
commit a6fa514665

View File

@@ -39,6 +39,7 @@ namespace GCS
{
public:
Point(){x = 0; y = 0;}
Point(double *px, double *py) {x=px; y=py;}
double *x;
double *y;
};