-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: updated MArray & MArrayElement + added MVariable * Added remove element function in MArray * Added label support in MArrayElement * Added generic mob fetch function in MArrayElement coupled with MArrayElementComp enum * Changed array.py to m_array.py because of conflict with native array module * Added variables documentation in references * Updated module name of m_array in references * feat: MArray label added * Label with four different direcitons added. * Label shifts on append and remove element appropriately. * Update label text doesn't remove previous label, therefore not added in this commit. * Method to fetch array label. * add: updated docs for new features * release: 0.1.5
- Loading branch information
Showing
12 changed files
with
948 additions
and
29 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ Enums | |
:toctree: generated | ||
|
||
~m_enum.MArrayDirection | ||
~m_enum.MArrayElementComp |
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 |
---|---|---|
|
@@ -9,5 +9,6 @@ Module Index | |
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
variables | ||
arrays | ||
enums |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Variables | ||
========= | ||
|
||
.. currentmodule:: manim_data_structures | ||
|
||
.. autosummary:: | ||
:toctree: generated | ||
|
||
~m_variable.MVariable |
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,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "manim-data-structures" | ||
version = "0.1.4" | ||
version = "0.1.5" | ||
description = "A Manim implementation for data structures" | ||
authors = ["Hammad Nasir <[email protected]>"] | ||
readme = "README.md" | ||
|
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,6 +1,13 @@ | ||
__version__ = "0.1.4" | ||
__version__ = "0.1.5" | ||
|
||
from .array import * | ||
from .m_array import * | ||
from .m_enum import * | ||
from .m_variable import * | ||
|
||
__all__ = ["MArrayElement", "MArray", "MArrayDirection"] | ||
__all__ = [ | ||
"MArrayElement", | ||
"MArray", | ||
"MArrayDirection", | ||
"MArrayElementComp", | ||
"MVariable", | ||
] |
Oops, something went wrong.