Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(USED TO FIX MAINTAINER ACCESS ISSUE) Overloaded operators for MArrayPointer and MVariable, separted classes to different files #21

Open
wants to merge 7 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ docs/source/media
generated
.vscode
rendering_times.csv
media/
5 changes: 4 additions & 1 deletion src/manim_data_structures/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
__version__ = "0.1.7"

from .m_array import *
from .m_enum import *
from .m_array import *
from .m_element import *
from .m_array_pointer import *
from .m_variable import *
from .m_sliding_window import *

__all__ = [
"MArrayElement",
Expand Down
2,961 changes: 713 additions & 2,248 deletions src/manim_data_structures/m_array.py

Large diffs are not rendered by default.

Loading