@@ -154,7 +154,7 @@ class ISOTemperatureLine_Specification_Robertson1968:
154154
155155def mired_to_CCT (mired : ArrayLike ) -> NDArrayFloat :
156156 """
157- Convert given micro reciprocal degree to correlated colour temperature
157+ Convert specified micro reciprocal degree to correlated colour temperature
158158 :math:`T_{cp}`.
159159
160160 Parameters
@@ -181,7 +181,7 @@ def mired_to_CCT(mired: ArrayLike) -> NDArrayFloat:
181181
182182def CCT_to_mired (CCT : ArrayLike ) -> NDArrayFloat :
183183 """
184- Convert given correlated colour temperature :math:`T_{cp}` to micro
184+ Convert specified correlated colour temperature :math:`T_{cp}` to micro
185185 reciprocal degree (mired).
186186
187187 Parameters
@@ -208,8 +208,8 @@ def CCT_to_mired(CCT: ArrayLike) -> NDArrayFloat:
208208
209209def _uv_to_CCT_Robertson1968 (uv : ArrayLike ) -> NDArrayFloat :
210210 """
211- Return the correlated colour temperature :math:`T_{cp}` and
212- :math:`\\ Delta_{uv}` from given *CIE UCS* colourspace *uv* chromaticity
211+ Compute the correlated colour temperature :math:`T_{cp}` and
212+ :math:`\\ Delta_{uv}` from specified *CIE UCS* colourspace *uv* chromaticity
213213 coordinates using *Roberston (1968)* method.
214214
215215 Parameters
@@ -276,8 +276,8 @@ def _uv_to_CCT_Robertson1968(uv: ArrayLike) -> NDArrayFloat:
276276
277277def uv_to_CCT_Robertson1968 (uv : ArrayLike ) -> NDArrayFloat :
278278 """
279- Return the correlated colour temperature :math:`T_{cp}` and
280- :math:`\\ Delta_{uv}` from given *CIE UCS* colourspace *uv* chromaticity
279+ Compute the correlated colour temperature :math:`T_{cp}` and
280+ :math:`\\ Delta_{uv}` from specified *CIE UCS* colourspace *uv* chromaticity
281281 coordinates using *Roberston (1968)* method.
282282
283283 Parameters
@@ -310,7 +310,7 @@ def uv_to_CCT_Robertson1968(uv: ArrayLike) -> NDArrayFloat:
310310
311311def _CCT_to_uv_Robertson1968 (CCT_D_uv : ArrayLike ) -> NDArrayFloat :
312312 """
313- Return the *CIE UCS* colourspace *uv* chromaticity coordinates from given
313+ Compute the *CIE UCS* colourspace *uv* chromaticity coordinates from specified
314314 correlated colour temperature :math:`T_{cp}` and :math:`\\ Delta_{uv}` using
315315 *Roberston (1968)* method.
316316
@@ -370,7 +370,7 @@ def _CCT_to_uv_Robertson1968(CCT_D_uv: ArrayLike) -> NDArrayFloat:
370370
371371def CCT_to_uv_Robertson1968 (CCT_D_uv : ArrayLike ) -> NDArrayFloat :
372372 """
373- Return the *CIE UCS* colourspace *uv* chromaticity coordinates from given
373+ Compute the *CIE UCS* colourspace *uv* chromaticity coordinates from specified
374374 correlated colour temperature :math:`T_{cp}` and :math:`\\ Delta_{uv}` using
375375 *Roberston (1968)* method.
376376
0 commit comments