Files @ 3b2255e3576d
Branch filter:

Location: light9/stubs/moviepy/video/tools/interpolators.pyi - annotation

Drew Perttula
big stubgen run for PIL, moviepy, rx
Ignore-this: 349c755d8d70fdd1ff5711bde41f1dcb
# Stubs for moviepy.video.tools.interpolators (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from typing import Any, Optional

class Interpolator:
    tt: Any = ...
    ss: Any = ...
    left: Any = ...
    right: Any = ...
    def __init__(self, tt: Optional[Any] = ..., ss: Optional[Any] = ..., ttss: Optional[Any] = ..., left: Optional[Any] = ..., right: Optional[Any] = ...) -> None: ...
    def __call__(self, t: Any): ...

class Trajectory:
    tt: Any = ...
    xx: Any = ...
    yy: Any = ...
    def __init__(self, tt: Any, xx: Any, yy: Any) -> None: ...
    def __call__(self, t: Any): ...
    def addx(self, x: Any): ...
    def addy(self, y: Any): ...
    xi: Any = ...
    yi: Any = ...
    def update_interpolators(self) -> None: ...
    def txy(self, tms: bool = ...): ...
    def to_file(self, filename: Any) -> None: ...
    @staticmethod
    def from_file(filename: Any): ...
    @staticmethod
    def save_list(trajs: Any, filename: Any) -> None: ...
    @staticmethod
    def load_list(filename: Any): ...