22RGB Colourspace Volume Computation
33==================================
44
5- Define various RGB colourspace volume computation objects:
5+ Various RGB colourspace volume computation objects:
66
77- :func:`colour.RGB_colourspace_limits`
88- :func:`colour.RGB_colourspace_volume_MonteCarlo`
@@ -91,7 +91,7 @@ def sample_RGB_colourspace_volume_MonteCarlo(
9191) -> int :
9292 """
9393 Randomly sample the *CIE L\\ *a\\ *b\\ ** colourspace volume and returns the
94- ratio of samples within the given *RGB* colourspace volume.
94+ ratio of samples within the specified *RGB* colourspace volume.
9595
9696 Parameters
9797 ----------
@@ -152,7 +152,7 @@ def sample_RGB_colourspace_volume_MonteCarlo(
152152
153153def RGB_colourspace_limits (colourspace : RGB_Colourspace ) -> NDArrayFloat :
154154 """
155- Compute given *RGB* colourspace volume limits in *CIE L\\ *a\\ *b\\ **
155+ Compute specified *RGB* colourspace volume limits in *CIE L\\ *a\\ *b\\ **
156156 colourspace.
157157
158158 Parameters
@@ -167,7 +167,7 @@ def RGB_colourspace_limits(colourspace: RGB_Colourspace) -> NDArrayFloat:
167167
168168 Notes
169169 -----
170- The limits are computed for the given *RGB* colourspace illuminant. This is
170+ The limits are computed for the specified *RGB* colourspace illuminant. This is
171171 important to account for, if the intent is to compare various *RGB*
172172 colourspaces together. In this instance, they must be chromatically adapted
173173 to the same illuminant before-hand.
@@ -212,7 +212,7 @@ def RGB_colourspace_volume_MonteCarlo(
212212 random_state : np .random .RandomState | None = None ,
213213) -> float :
214214 """
215- Perform given *RGB* colourspace volume computation using *Monte Carlo*
215+ Perform specified *RGB* colourspace volume computation using *Monte Carlo*
216216 method and multiprocessing.
217217
218218 Parameters
@@ -296,7 +296,7 @@ def RGB_colourspace_volume_coverage_MonteCarlo(
296296 random_state : np .random .RandomState | None = None ,
297297) -> float :
298298 """
299- Return given *RGB* colourspace percentage coverage of an arbitrary volume.
299+ Return specified *RGB* colourspace percentage coverage of an arbitrary volume.
300300
301301 Parameters
302302 ----------
@@ -347,7 +347,7 @@ def RGB_colourspace_pointer_gamut_coverage_MonteCarlo(
347347 random_state : np .random .RandomState | None = None ,
348348) -> float :
349349 """
350- Return given *RGB* colourspace percentage coverage of Pointer's Gamut
350+ Return specified *RGB* colourspace percentage coverage of Pointer's Gamut
351351 volume using *Monte Carlo* method.
352352
353353 Parameters
@@ -393,7 +393,7 @@ def RGB_colourspace_visible_spectrum_coverage_MonteCarlo(
393393 random_state : np .random .RandomState | None = None ,
394394) -> float :
395395 """
396- Return given *RGB* colourspace percentage coverage of visible spectrum
396+ Return specified *RGB* colourspace percentage coverage of visible spectrum
397397 volume using *Monte Carlo* method.
398398
399399 Parameters
0 commit comments