aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/star_control/fpoint.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-07-16 12:36:02 -0400
committerPaul Gilbert2016-07-17 13:09:49 -0400
commit9b1efa3bf5696ea606b9374d216d4a1ecf52610b (patch)
treef747d0e110710a7002125b10a6101d55b7a1e929 /engines/titanic/star_control/fpoint.h
parente1695101bc464fe1a4917f7cd25db38854c923e0 (diff)
downloadscummvm-rg350-9b1efa3bf5696ea606b9374d216d4a1ecf52610b.tar.gz
scummvm-rg350-9b1efa3bf5696ea606b9374d216d4a1ecf52610b.tar.bz2
scummvm-rg350-9b1efa3bf5696ea606b9374d216d4a1ecf52610b.zip
TITANIC: Added FMatrix methods
Diffstat (limited to 'engines/titanic/star_control/fpoint.h')
-rw-r--r--engines/titanic/star_control/fpoint.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/engines/titanic/star_control/fpoint.h b/engines/titanic/star_control/fpoint.h
index 5329ecb9e3..f2cef18ea5 100644
--- a/engines/titanic/star_control/fpoint.h
+++ b/engines/titanic/star_control/fpoint.h
@@ -25,12 +25,15 @@
namespace Titanic {
-class FVector {
+/**
+ * Floating point Point class
+ */
+class FPoint {
public:
double _x, _y;
public:
- FVector() : _x(0), _y(0) {}
- FVector(double x, double y) : _x(x), _y(y) {}
+ FPoint() : _x(0), _y(0) {}
+ FPoint(double x, double y) : _x(x), _y(y) {}
};
} // End of namespace Titanic