aboutsummaryrefslogtreecommitdiff
path: root/graphics/transform_tools.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2014-08-29 03:26:48 +0200
committerEinar Johan Trøan Sømåen2014-08-29 03:26:48 +0200
commit0593c2eab29e61692738dd8d88cfa88501803f0d (patch)
treefdc488561d23b500256453fd7e811092013d1a9d /graphics/transform_tools.h
parent183f8eea43fc01173810cc9668f8d458322a5639 (diff)
downloadscummvm-rg350-0593c2eab29e61692738dd8d88cfa88501803f0d.tar.gz
scummvm-rg350-0593c2eab29e61692738dd8d88cfa88501803f0d.tar.bz2
scummvm-rg350-0593c2eab29e61692738dd8d88cfa88501803f0d.zip
GRAPHICS: Fix some Doxygen comments that seem wrong.
Diffstat (limited to 'graphics/transform_tools.h')
-rw-r--r--graphics/transform_tools.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/transform_tools.h b/graphics/transform_tools.h
index c618f7c35a..a51c8ee229 100644
--- a/graphics/transform_tools.h
+++ b/graphics/transform_tools.h
@@ -57,15 +57,15 @@ class TransformTools {
public:
/**
* Basic transform (scale + rotate) for a single point
+ * @param point the point on which the transform is to be applied
+ * @param rotate the angle in degrees
+ * @param zoom zoom x,y in percent
+ * @param mirrorX flip along the vertical axis?
+ * @param mirrorY flip along the horizontal axis?
*/
static FloatPoint transformPoint(FloatPoint point, const float rotate, const Common::Point &zoom, const bool mirrorX = false, const bool mirrorY = false);
/**
- * @param &point the point on which the transform is to be applied
- * @param rotate the angle in degrees
- * @param &zoom zoom x,y in percent
- * @param mirrorX flip along the vertical axis?
- * @param mirrorY flip along the horizontal axis?
* @return the smallest rect that can contain the transformed sprite
* and, as a side-effect, "newHotspot" will tell you where the hotspot will
* have ended up in the new rect, for centering.