GRAPHICS: Fix some Doxygen comments that seem wrong.

This commit is contained in:
Einar Johan Trøan Sømåen 2014-08-29 03:26:48 +02:00
parent 183f8eea43
commit 0593c2eab2
5 changed files with 12 additions and 16 deletions

View file

@ -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.