A newer version of the Gradio SDK is available: 6.20.0
mobject
Base classes for objects that can be displayed.
Type Aliases
class TimeBasedUpdater
Callable[['Mobject', float], object]
class NonTimeBasedUpdater
Callable[['Mobject'], object]
class Updater
[`NonTimeBasedUpdater`](#manim.mobject.mobject.NonTimeBasedUpdater) | [`TimeBasedUpdater`](#manim.mobject.mobject.TimeBasedUpdater)
Classes
Group |
Groups together multiple Mobjects. |
|---|---|
Mobject |
Mathematical Object: base class for objects that can be displayed on screen. |
Functions
override_animate(method)
Decorator for overriding method animations.
This allows to specify a method (returning an Animation)
which is called when the decorated method is used with the .animate syntax
for animating the application of a method.
SEE ALSO
NOTE
Overridden methods cannot be combined with normal or other overridden
methods using method chaining with the .animate syntax.
Examples
- Return type: LambdaType