summaryrefslogtreecommitdiff
path: root/engine/include
diff options
context:
space:
mode:
Diffstat (limited to 'engine/include')
-rw-r--r--engine/include/kurator/engine/Camera.h2
-rw-r--r--engine/include/kurator/engine/Point.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/engine/include/kurator/engine/Camera.h b/engine/include/kurator/engine/Camera.h
index abe0ffe..2eb192a 100644
--- a/engine/include/kurator/engine/Camera.h
+++ b/engine/include/kurator/engine/Camera.h
@@ -13,6 +13,8 @@ struct Camera
{
Point offset = {};
double scale = 1.0;
+ Point to_world(const Point& screen) const;
+ Point to_screen(const Point& world) const;
};
diff --git a/engine/include/kurator/engine/Point.h b/engine/include/kurator/engine/Point.h
index 0e9f0ab..3dc0c8b 100644
--- a/engine/include/kurator/engine/Point.h
+++ b/engine/include/kurator/engine/Point.h
@@ -19,6 +19,8 @@ struct Point
Point normalized() const;
Point operator-(const Point& other) const;
Point operator+(const Point& other) const;
+ Point subtract(const Point& other) const;
+ Point subtract(double _x, double _y) const;
};