summaryrefslogtreecommitdiff
path: root/include/llmr/map/transform.hpp
blob: 26a6683f20ae12d36897c66672b9b0aa5f6e2099 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef LLMR_MAP_TRANSFORM
#define LLMR_MAP_TRANSFORM

namespace llmr {

class tile;

class transform {
public:
    transform();

    void moveBy(double dx, double dy);
    void scaleBy(double ds, double cx, double cy);

public:
    double x, y;
    double scale;
};

}

#endif