From 0ba143cd2078fc8cbba460bbe42f8fcfe9cb6edb Mon Sep 17 00:00:00 2001 From: AEtHeLsYn Date: Tue, 22 Dec 2015 10:12:34 +0100 Subject: [PATCH] Update MultiColorCorrection.h Former-commit-id: 82dee880f9614e813758b2d5c7e08c3a33aa6d4d --- libsrc/hyperion/MultiColorCorrection.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/libsrc/hyperion/MultiColorCorrection.h b/libsrc/hyperion/MultiColorCorrection.h index 5f90fb12..cdefce17 100644 --- a/libsrc/hyperion/MultiColorCorrection.h +++ b/libsrc/hyperion/MultiColorCorrection.h @@ -10,7 +10,7 @@ #include /// -/// The LedColorTransform is responsible for performing color transformation from 'raw' colors +/// The LedColorCorrection is responsible for performing color correction from 'raw' colors /// received as input to colors mapped to match the color-properties of the leds. /// class MultiColorCorrection @@ -20,9 +20,9 @@ public: ~MultiColorCorrection(); /** - * Adds a new ColorTransform to this MultiColorTransform + * Adds a new ColorCorrection to this MultiColorCorrection * - * @param transform The new ColorTransform (ownership is transfered) + * @param Correction The new ColorCorrection (ownership is transfered) */ void addCorrection(ColorCorrection * correction); @@ -31,17 +31,17 @@ public: bool verifyCorrections() const; /// - /// Returns the identifier of all the unique ColorTransform + /// Returns the identifier of all the unique ColorCorrection /// - /// @return The list with unique id's of the ColorTransforms + /// @return The list with unique id's of the ColorCorrections const std::vector & getCorrectionIds(); /// - /// Returns the pointer to the ColorTransform with the given id + /// Returns the pointer to the ColorCorrection with the given id /// - /// @param id The identifier of the ColorTransform + /// @param id The identifier of the ColorCorrection /// - /// @return The ColorTransform with the given id (or nullptr if it does not exist) + /// @return The ColorCorrection with the given id (or nullptr if it does not exist) /// ColorCorrection* getCorrection(const std::string& id); @@ -55,12 +55,12 @@ public: std::vector applyCorrection(const std::vector& rawColors); private: - /// List with transform ids + /// List with Correction ids std::vector _correctionIds; - /// List with unique ColorTransforms + /// List with unique ColorCorrections std::vector _correction; - /// List with a pointer to the ColorTransform for each individual led + /// List with a pointer to the ColorCorrection for each individual led std::vector _ledCorrections; };