From 82cf4904ea74e389d569ee7284110e7776c82a6e Mon Sep 17 00:00:00 2001 From: abv Date: Tue, 2 Aug 2016 18:11:41 +0300 Subject: [PATCH] 0025448: Coding - remove useless header Quantity_Color_1.hxx Useless header file Quantity_Color_1.hxx is deleted, its content moved to Quantity_Color.cxx The meaning of special Hue value -1.0 has been added to Quantity_Color methods description. --- src/Quantity/FILES | 1 - src/Quantity/Quantity_Color.cxx | 16 ++---- src/Quantity/Quantity_Color.hxx | 89 +++++++++++++++++-------------- src/Quantity/Quantity_Color_1.hxx | 22 -------- 4 files changed, 55 insertions(+), 73 deletions(-) delete mode 100644 src/Quantity/Quantity_Color_1.hxx diff --git a/src/Quantity/FILES b/src/Quantity/FILES index 2c7f49d8a2..c5bd950287 100755 --- a/src/Quantity/FILES +++ b/src/Quantity/FILES @@ -14,7 +14,6 @@ Quantity_Coefficient.hxx Quantity_CoefficientOfExpansion.hxx Quantity_Color.cxx Quantity_Color.hxx -Quantity_Color_1.hxx Quantity_ColorRGBA.hxx Quantity_ColorDefinitionError.hxx Quantity_Concentration.hxx diff --git a/src/Quantity/Quantity_Color.cxx b/src/Quantity/Quantity_Color.cxx index a61ba9a819..408c9a473d 100644 --- a/src/Quantity/Quantity_Color.cxx +++ b/src/Quantity/Quantity_Color.cxx @@ -13,18 +13,8 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. -//-Version -//-Design Declaration des variables specifiques aux couleurs -//-Warning Une couleur est definie, soit en RGB, soit en HLS, -// soit par un nom predefini extrait des noms X11. -//-References -//-Language C++ 2.0 -//-Declarations -// for Test method -// for the class - #include -#include + #include #include #include @@ -39,6 +29,10 @@ void call_rgbhls(float r, float g, float b, float& h, float& l, float& s); //-Global data definitions +#define RGBHLS_H_UNDEFINED -1.0 + +static Quantity_Parameter TheEpsilon = 0.0001; + // -- les composantes RGB // MyRed : Standard_ShortReal; // MyGreen : Standard_ShortReal; diff --git a/src/Quantity/Quantity_Color.hxx b/src/Quantity/Quantity_Color.hxx index 018d7c9a76..eacc3cad7b 100644 --- a/src/Quantity/Quantity_Color.hxx +++ b/src/Quantity/Quantity_Color.hxx @@ -60,16 +60,21 @@ public: //! Creates the colour . Standard_EXPORT Quantity_Color(const Quantity_NameOfColor AName); - //! Creates a colour according to the definition system - //! TypeOfColor. - //! TOC_RGB : the value of red between 0. and 1. - //! the value of green between 0. and 1. - //! the value of blue between 0. and 1. + //! Creates a color according to the definition system theType. + //! Quantity_TOC_RGB: + //! - theR1 the value of Red within range [0.0; 1.0] + //! - theR2 the value of Green within range [0.0; 1.0] + //! - theR3 the value of Blue within range [0.0; 1.0] //! - //! TOC_HLS : is the hue angle in degrees, 0. being red - //! is the lightness between 0. and 1. - //! is the saturation between 0. and 1. - Standard_EXPORT Quantity_Color(const Quantity_Parameter R1, const Quantity_Parameter R2, const Quantity_Parameter R3, const Quantity_TypeOfColor AType); + //! Quantity_TOC_HLS: + //! - theR1 is the Hue (H) angle in degrees within range [0.0; 360.0], 0.0 being Red. + //! Value -1.0 is a special value reserved for grayscale color (S should be 0.0). + //! - theR2 is the Lightness (L) within range [0.0; 1.0] + //! - theR3 is the Saturation (S) within range [0.0; 1.0] + Standard_EXPORT Quantity_Color (const Quantity_Parameter theR1, + const Quantity_Parameter theR2, + const Quantity_Parameter theR3, + const Quantity_TypeOfColor theType); //! Define color from RGB values. Standard_EXPORT explicit Quantity_Color (const NCollection_Vec3& theRgb); @@ -94,16 +99,21 @@ public: //! colour . Standard_EXPORT void SetValues (const Quantity_NameOfColor AName); - //! Updates a colour according to the mode specified by - //! TypeOfColor - //! TOC_RGB : the value of red between 0. and 1. - //! the value of green between 0. and 1. - //! the value of blue between 0. and 1. + //! Updates a color according to the mode specified by theType. + //! TOC_RGB: + //! - theR1 the value of Red within range [0.0; 1.0] + //! - theR2 the value of Green within range [0.0; 1.0] + //! - theR3 the value of Blue within range [0.0; 1.0] //! - //! TOC_HLS : is the hue angle in degrees, 0. being red - //! is the lightness between 0. and 1. - //! is the saturation between 0. and 1. - Standard_EXPORT void SetValues (const Quantity_Parameter R1, const Quantity_Parameter R2, const Quantity_Parameter R3, const Quantity_TypeOfColor AType); + //! TOC_HLS: + //! - theR1 is the Hue (H) angle in degrees within range [0.0; 360.0], 0.0 being Red. + //! -1.0 is a special value reserved for grayscale color (S should be 0.0). + //! - theR2 is the Lightness (L) within range [0.0; 1.0] + //! - theR3 is the Saturation (S) within range [0.0; 1.0] + Standard_EXPORT void SetValues (const Quantity_Parameter theR1, + const Quantity_Parameter theR2, + const Quantity_Parameter theR3, + const Quantity_TypeOfColor theType); //! Returns the percentage change of contrast and intensity //! between and . @@ -121,16 +131,15 @@ public: //! Returns the square of distance between two colours. Standard_EXPORT Standard_Real SquareDistance (const Quantity_Color& AColor) const; - //! Returns the Blue component (quantity of blue) of the - //! color . + //! Returns the Blue component (quantity of blue) of the color within range [0.0; 1.0]. Standard_EXPORT Quantity_Parameter Blue() const; - //! Returns the Green component (quantity of green) of the - //! color . + //! Returns the Green component (quantity of green) of the color within range [0.0; 1.0]. Standard_EXPORT Quantity_Parameter Green() const; - //! Returns the Hue component (hue angle) of the - //! color . + //! Returns the Hue component (hue angle) of the color + //! in degrees within range [0.0; 360.0], 0.0 being Red. + //! -1.0 is a special value reserved for grayscale color (S should be 0.0) Standard_EXPORT Quantity_Parameter Hue() const; //! Returns Standard_True if the distance between and @@ -153,8 +162,7 @@ Standard_Boolean operator == (const Quantity_Color& Other) const return IsEqual(Other); } - //! Returns the Light component (value of the lightness) of the - //! color . + //! Returns the Light component (value of the lightness) of the color within range [0.0; 1.0]. Standard_EXPORT Quantity_Parameter Light() const; //! Returns the name of the color defined by its @@ -165,26 +173,29 @@ Standard_Boolean operator == (const Quantity_Color& Other) const //! Standard_OutOfRange if R, G or B is less than 0. or greater than 1. Standard_EXPORT Quantity_NameOfColor Name() const; - //! Returns the Red component (quantity of red) of the - //! color . + //! Returns the Red component (quantity of red) of the color within range [0.0; 1.0]. Standard_EXPORT Quantity_Parameter Red() const; - //! Returns the Saturation component (value of the saturation) - //! of the color . + //! Returns the Saturation component (value of the saturation) of the color within range [0.0; 1.0]. Standard_EXPORT Quantity_Parameter Saturation() const; //! Return the color as vector of 3 float elements. operator const NCollection_Vec3&() const { return *(const NCollection_Vec3* )this; } - //! Returns in R1, R2 and R3 the components of - //! this color according to the color system definition AType. - //! - if AType is Quantity_TOC_RGB R1 is the - //! quantity of red, R2 is the quantity of green and - //! R3 is the quantity of blue in this color. - //! - if AType is Quantity_TOC_HLS R1 is the - //! hue angle in degrees (0 being red), R2 is the - //! lightness and R3 is the saturation of this color. - Standard_EXPORT void Values (Quantity_Parameter& R1, Quantity_Parameter& R2, Quantity_Parameter& R3, const Quantity_TypeOfColor AType) const; + //! Returns in theR1, theR2 and theR3 the components of this color according to the color system definition theType. + //! If theType is Quantity_TOC_RGB: + //! - theR1 the value of Red between 0.0 and 1.0 + //! - theR2 the value of Green between 0.0 and 1.0 + //! - theR3 the value of Blue between 0.0 and 1.0 + //! If theType is Quantity_TOC_HLS: + //! - theR1 is the Hue (H) angle in degrees within range [0.0; 360.0], 0.0 being Red. + //! -1.0 is a special value reserved for grayscale color (S should be 0.0). + //! - theR2 is the Lightness (L) within range [0.0; 1.0] + //! - theR3 is the Saturation (S) within range [0.0; 1.0] + Standard_EXPORT void Values (Quantity_Parameter& theR1, + Quantity_Parameter& theR2, + Quantity_Parameter& theR3, + const Quantity_TypeOfColor theType) const; //! Sets the specified value used to compare and //! an other color in IsDifferent and in IsEqual methods. diff --git a/src/Quantity/Quantity_Color_1.hxx b/src/Quantity/Quantity_Color_1.hxx deleted file mode 100644 index a14b13ad2b..0000000000 --- a/src/Quantity/Quantity_Color_1.hxx +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 1998-1999 Matra Datavision -// Copyright (c) 1999-2014 OPEN CASCADE SAS -// -// This file is part of Open CASCADE Technology software library. -// -// This library is free software; you can redistribute it and/or modify it under -// the terms of the GNU Lesser General Public License version 2.1 as published -// by the Free Software Foundation, with special exception defined in the file -// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -// distribution for complete text of the license and disclaimer of any warranty. -// -// Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. - -#ifndef COLOR_PXX_INCLUDED -#define COLOR_PXX_INCLUDED - -#define RGBHLS_H_UNDEFINED -1.0 - -static Quantity_Parameter TheEpsilon = 0.0001; - -#endif