documentation

This commit is contained in:
2025-12-16 19:34:21 -08:00
parent 0dd5ab33a5
commit 7a2917c357

View File

@@ -14,9 +14,9 @@ class Rgb(Generic[T]):
values of interest. values of interest.
""" """
red: T #: Red component red: T # : Red component
green: T #: Green component green: T # : Green component
blue: T #: Blue component blue: T # : Blue component
@dataclass @dataclass
@@ -33,9 +33,9 @@ class AscSopComponents(Generic[T]):
is `b` and `power` is `p`. is `b` and `power` is `p`.
""" """
slope: Rgb[T] #: The linear/slope component `a` slope: Rgb[T] # : The linear/slope component `a`
offset: Rgb[T] #: The constant/offset component `b` offset: Rgb[T] # : The constant/offset component `b`
power: Rgb[T] #: The exponential/power component `p` power: Rgb[T] # : The exponential/power component `p`
class FramecountTriple(NamedTuple): class FramecountTriple(NamedTuple):