Renamed method parameters.

Former-commit-id: e10705dd6d93f5c1398a213583bbe349833d2648
This commit is contained in:
Tim Niggemann 2014-07-15 12:08:27 +02:00
parent 7e049273a8
commit fcb2ff6667
1 changed files with 2 additions and 2 deletions

View File

@ -158,7 +158,7 @@ private:
bool areStatesSaved();
///
/// Converts an RGB color to the Hue xy color space and brightness
/// Converts an RGB color to the Hue xy color space and brightness.
/// https://github.com/PhilipsHue/PhilipsHueSDK-iOS-OSX/blob/master/ApplicationDesignNotes/RGB%20to%20xy%20Color%20conversion.md
///
/// @param red the red component in [0, 1]
@ -211,6 +211,6 @@ private:
///
/// @return the distance between the two points
///
float getDistanceBetweenTwoPoints(ColorPoint one, ColorPoint two);
float getDistanceBetweenTwoPoints(ColorPoint p1, ColorPoint p2);
};