Skip to content

Commit ef7881f

Browse files
committed
points.hpp/XYTransform: fixed member order
1 parent a643aa9 commit ef7881f

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/points.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,6 @@ template <class axis_type>
293293
class XYTransform
294294
{
295295
public:
296-
static const int toto = 1;
297296
typedef Point2DAxis<axis_type> point;
298297
typedef typename point::real real;
299298

@@ -347,10 +346,10 @@ class XYTransform
347346

348347
public:
349348
int nx, ny;
350-
real x0, y0;
351-
real dx, dy;
352349
const axis_type &ax;
353350
const axis_type &ay;
351+
real x0, y0;
352+
real dx, dy;
354353
};
355354

356355
#endif

0 commit comments

Comments
 (0)