|
41 | 41 | "RGBA_Tuple_Int",
|
42 | 42 | "HSV_Array_Float",
|
43 | 43 | "HSV_Tuple_Float",
|
| 44 | + "HSL_Array_Float", |
| 45 | + "HSL_Tuple_Float", |
| 46 | + "HSVA_Array_Float", |
| 47 | + "HSVA_Tuple_Float", |
44 | 48 | "ManimColorInternal",
|
45 | 49 | "PointDType",
|
46 | 50 | "InternalPoint2D",
|
|
215 | 219 | Brightness) in the represented color.
|
216 | 220 | """
|
217 | 221 |
|
| 222 | +HSVA_Array_Float: TypeAlias = RGBA_Array_Float |
| 223 | +"""``shape: (4,)`` |
| 224 | +
|
| 225 | +A :class:`numpy.ndarray` of 4 floats between 0 and 1, representing a |
| 226 | +color in HSVA (or HSBA) format. |
| 227 | +
|
| 228 | +Its components describe, in order, the Hue, Saturation and Value (or |
| 229 | +Brightness) in the represented color. |
| 230 | +""" |
| 231 | + |
| 232 | +HSVA_Tuple_Float: TypeAlias = RGBA_Tuple_Float |
| 233 | +"""``shape: (4,)`` |
| 234 | +
|
| 235 | +A tuple of 4 floats between 0 and 1, representing a color in HSVA (or |
| 236 | +HSBA) format. |
| 237 | +
|
| 238 | +Its components describe, in order, the Hue, Saturation and Value (or |
| 239 | +Brightness) in the represented color. |
| 240 | +""" |
| 241 | + |
| 242 | +HSL_Array_Float: TypeAlias = RGB_Array_Float |
| 243 | +"""``shape: (3,)`` |
| 244 | +
|
| 245 | +A :class:`numpy.ndarray` of 3 floats between 0 and 1, representing a |
| 246 | +color in HSL format. |
| 247 | +
|
| 248 | +Its components describe, in order, the Hue, Saturation and Lightness |
| 249 | +in the represented color. |
| 250 | +""" |
| 251 | + |
| 252 | +HSL_Tuple_Float: TypeAlias = RGB_Tuple_Float |
| 253 | +"""``shape: (3,)`` |
| 254 | +
|
| 255 | +A :class:`numpy.ndarray` of 3 floats between 0 and 1, representing a |
| 256 | +color in HSL format. |
| 257 | +
|
| 258 | +Its components describe, in order, the Hue, Saturation and Lightness |
| 259 | +in the represented color. |
| 260 | +""" |
| 261 | + |
218 | 262 | ManimColorInternal: TypeAlias = RGBA_Array_Float
|
219 | 263 | """``shape: (4,)``
|
220 | 264 |
|
|
0 commit comments