documentation

This commit is contained in:
2025-12-16 18:53:26 -08:00
parent 48f41ef4dc
commit abfdfaffd8

View File

@@ -33,15 +33,16 @@ class AscSopComponents(Generic[T]):
is `b` and `power` is `p`. is `b` and `power` is `p`.
""" """
slope: Rgb[T] #: The component slope: Rgb[T] #: The linear/slope component `a`
offset: Rgb[T] #: The constant component offset: Rgb[T] #: The constant/offset component `b`
power: Rgb[T] #: The exponential component power: Rgb[T] #: The exponential/power component `p`
class FramecountTriple(NamedTuple): class FramecountTriple(NamedTuple):
""" """
Fields in an FRMC statement Fields in an FRMC statement
""" """
start: int start: int
end: int end: int
duration: int duration: int