aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/graphics/transform_tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/graphics/transform_tools.h')
-rw-r--r--engines/wintermute/graphics/transform_tools.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/wintermute/graphics/transform_tools.h b/engines/wintermute/graphics/transform_tools.h
index e59c47272a..c92b81fd11 100644
--- a/engines/wintermute/graphics/transform_tools.h
+++ b/engines/wintermute/graphics/transform_tools.h
@@ -30,10 +30,10 @@
namespace Wintermute {
class TransformTools {
-public:
+public:
/**
* Basic transform (scale + rotate) for a single point
- */
+ */
static FloatPoint transformPoint(const FloatPoint &point, const float rotate, const Point32 &zoom, const bool mirrorX = false, const bool mirrorY = false);
/**
@@ -46,7 +46,7 @@ public:
* and, as a side-effect, "newHotspot" will tell you where the hotspot will
* have ended up in the new rect, for centering.
*/
- static Rect32 newRect (const Rect32 &oldRect, const TransformStruct &transform, Point32 *newHotspot);
+ static Rect32 newRect(const Rect32 &oldRect, const TransformStruct &transform, Point32 *newHotspot);
};
} // End of namespace Wintermute