alembcke
alembcke
The convention is that the "Parameters" section should be before the "Examples" section, but this wasn't followed on some of the docstrings. So I updated that with another commit.
@NaoPross there are two draft PRs being worked on that I think would fix this issue. The first one is #2450 which gets rid of `MObject` and `VMObject` in favor...
@NaoPross and @behackl when I try I get the same error: ``` ManimGL v1.6.1 [19:22:05] INFO Using the default configuration file, which you can modify in `/home/alexlembcke/.pyenv/versions/3.7.12/lib/python3.7/site-packages/manimlib/default_config.yml` config.py:265 INFO If...
The cause of this issue is that the Cairo-based `Surface` is a `VMobject`, while the OpenGL-based `OpenGLSurface` is a regular `Mobject`. This is the same issue as mentioned in #2188,...
I would say there should be reasonable defaults for those parameters. You can already add numbers to the axes by passing `axis_config = {"include_numbers": True}` when creating `ThreeDAxes`, so why...
@zkpowergrind no I was not. The only solution I found was to install [pyenv](https://github.com/pyenv/pyenv) and set it to Python 3.7.
@GameDungeon does #2630 resolve this issue?
What about the pivots? To me those are key as I set values below 0 to be one color and above 0 to be another color. Is it possible to...
Added a test to round out this PR. @behackl is there anything else I need to do to get this PR in shape to be merged? Or are we waiting...
@MrDiver the number of sub-mobjects created is up to the user. It comes from `x_range=(0.0, 6, 0.001)` in `axes.plot()`. I choose `0.001` to ensure a nice smooth transition of colors....