-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generalize ActivableMobject to non-vector objs (#29)
* Generalize Activable to non-vector objs * Add ImageAutoActivable * Rename file to vgroupactivable to groupactivable * Fix incorrect opacity variable * Reorganize class definitions * Fix typing * Fix pre commits
- Loading branch information
Showing
5 changed files
with
158 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
from .chartbars import ChartBars | ||
from .directionalarrow import DirectionalArrow | ||
from .groupactivable import GroupActivable, ImageAutoActivable, VActivable, VAutoActivable | ||
from .invariance import Invariance | ||
from .logo import PowerManim | ||
from .numberslider import NumberSlider | ||
from .vgroupactivable import Activable, AutoActivable, VGroupActivable | ||
|
||
__all__ = [ | ||
"AutoActivable", | ||
"ImageAutoActivable", | ||
"VAutoActivable", | ||
"ChartBars", | ||
"DirectionalArrow", | ||
"Activable", | ||
"VActivable", | ||
"Invariance", | ||
"NumberSlider", | ||
"PowerManim", | ||
"VGroupActivable", | ||
"GroupActivable", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters