number int64 1 2.09k | content stringlengths 4 45.6k | comments sequence |
|---|---|---|
2,094 | Video work : Numerous little bug fixes and improvements based on video work in the past months. Regrettably, this lumps together many disparate changes, as I had evidently neglected to keep things in sync with master. I hope anyone reading this will forgive me. | [] |
2,092 | The method of move_to can't move horizontally. : ### Describe the bug : the method of move_to can't move horizontally,Run the following code and you will find that the objects on the screen do not move completely horizontally, but are offset downwards. What is going on?
<!-- A clear and concise description of what the... | [] |
2,091 | The method of move_to can't move horizontally.I can't understand.Hope to be a answered : | [] |
2,088 | Succession bug for introducer animations : ### Describe the bug
<!-- A clear and concise description of what the bug is. -->
I'm not sure if this is necessarily a bug, but running multiple `Write` or `FadeIn` animations in a `Succession` animation does not introduce them independently, as one would expect.
**Code**:... | [
"Closing.\r\n\r\nThe desired effect is achieved with `LaggedStart` instead."
] |
2,081 | Wrong Highlighting of Latex with set_color_by_tex : ### Describe the bug
In a certain context, the wrong symbol is highlighted, namely the symbol after the wanted/correct one.
**Code**:
```python
from manim import Scene, MathTex, ORANGE
class ExampleScene(Scene):
def construct(self): # noqa: PLR0915
... | [
"wrong thread. Sorry."
] |
2,075 | I want to install manim : I typed manimgl in cmd
error
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "C:\Users\jm\AppData\Local\Programs\Python\Python312\Scripts\manimgl.exe\__main__.py", line 4, in <module>
... | [
"I solved this by running\r\n`pip install setuptools`"
] |
2,074 | Video is just black (entire duration) : ### Describe the bug
The media/videos output is just black.
**Code**:
Using `manim==0.18.0` installed in a virtual environment and the quickstart [code](https://docs.manim.community/en/stable/tutorials/quickstart.html)
```
from manim import *
class CreateCircle(Scene)... | [
"I've opened this issue in the wrong repository as I am using the community version."
] |
2,069 | Create New : <!-- Thanks for contributing to manim!
Please ensure that your pull request works with the latest version of manim.
-->
## Motivation
<!-- Outline your motivation: In what way do your changes improve the library? -->
## Proposed changes
<!-- What you changed in those files -->
-
-
-
... | [] |
2,067 | manim isn't working even with their official examples : ### Describe the error
I am looking at the example https://3b1b.github.io/manim/getting_started/example_scenes.html#textexample
Shorttening it, I have the bare minimum
```
class TextExample(Scene):
def construct(self):
# To run this scene pro... | [
"please don't use community's version to run 3b1b's code"
] |
2,066 | Person1 : <!-- Thanks for contributing to manim!
Please ensure that your pull request works with the latest version of manim.
-->
## Motivation
<!-- Outline your motivation: In what way do your changes improve the library? -->
## Proposed changes
<!-- What you changed in those files -->
-
-
-
## ... | [] |
2,054 | Allow add two or more ImageMobjects and TextureSurfaces : <!-- Thanks for contributing to manim!
Please ensure that your pull request works with the latest version of manim.
-->
## Motivation
<!-- Outline your motivation: In what way do your changes improve the library? -->
## Proposed changes
<!-- What y... | [] |
2,052 | Raising OSError: [WinError 6] the handle is invalid. : ### Describe the error
<!-- A clear and concise description of what you want to make. -->
It runs well on Circle, Arc, Arrow demos and others.
When run a demo for SingleStringTex, Raising "OSError: [WinError 6] the handle is invalid."
How to fix it?
Texli... | [
"I found that worked well in cmd, but Rasing error above when run in PyCharm Terminal."
] |
2,046 | Flat rendering of 3D-Scene : ### Describe the bug
I want to render this 3D example: https://3b1b.github.io/manim/getting_started/example_scenes.html#surfaceexample
**Code**:
``` python
from manimlib import *
import numpy as np
# To watch one of these scenes, run the following:
# manimgl example_scenes.py O... | [
"Works when I use Scene instead of ThreeDScene and put \r\n\r\n```python\r\nCONFIG = {\r\n \"camera_class\": ThreeDCamera,\r\n}\r\n```\r\n\r\n before construct"
] |
2,038 | self.get_points() == old_points error : ### Describe the error
```cpp
if not np.all(self.get_points() == old_points):
ValueError: operands could not be broadcast together with shapes (24,3) (0,3)
```
### Code and Error
**Code**:
```python
from manimlib import *
class P(Scene):
def construct(self):
... | [
"numpy <=1.24",
"> \r\n\r\nThanks! It does work!"
] |
2,033 | Generated surface has artifacts : ### Describe the bug
When i generate a surface, I observe strange artitifacts
**Code**:
```
from perlin_noise import PerlinNoise
def perlin_noise(noise, u, v, octaves=8):
total = 0
p = [u, v]
for i in range(octaves):
total += (1 / (2 ** i)) * noise([(2 **... | [] |
2,029 | warnings while displaying text : while running the following line:
text = Text('art')
the following warning apeared:
WARNING Unsupported element type: <class 'svgelements.svgelements.Use'> svg_mobject.py:174
WARNING Unsupported element type: <class 'svgelements.svgelements.Use'> ... | [
"found the solution on https://github.com/3b1b/manim/issues/1904"
] |
2,028 | Update installation.rst added FFmpeg install : Hi Team Manim
# Added ffmpeg install in docs
Hi, I am Rudransh Bharwdaj a developer. When I was making some project I face many problem while installing ffmpeg and I realized that many other developers are also facing this issue so I added how to install ffmpeg for w... | [
"Try to solve this as fast as possible because people are making videos for SoME3 using manim and we have to insure that they will not face any issue and documentation will complete and maintained .\r\nThanks (again for reading this)",
"Please reply \r\n",
".....",
"broooo pls rply??",
"thats baad",
"pls ... |
2,021 | 'TexText class' Bug in manimgl : ```
from manimlib import *
class Te(Scene):
def construct(self):
t1 = TexText("apple")
self.add(t1)
```
As shown in the figure below, the execution is completed normally and the svg file is created. But "apple" doesn't appear on the screen.
When I find a... | [
"I think it's a latex problem, not a bug. Thanks."
] |
2,019 | Korean language issue in Tex class : [manim version is 0.17.3, os: window10]
To use Korean in manim's Tex class
Enter the kotex package as` \usepackage{kotex}` in the tex_template.py file
and When I run `t = Tex("안녕하세요")`, I get the following error.
Of course the kotex package is installed in miktex.
[err... | [] |
2,017 | TypeError When I use self.apply_matrix twice : ### Describe the error
<!-- A clear and concise description of what you want to make. -->
I want to rotate 90 degrees by apply a matrix [[0,-1],[1,0]] , the first time I apply is OK, but the second time failed, TypeError: All submobjects must be of type VMobject, what s... | [
"Sorry everyone . I know where the problem is \r\nI should invoke self.moving_mobjects = [] after the first apply"
] |
2,008 | Changing the index of the anchor in smooth_quadtraic_path : Changed the index of the anchors as it was going out of the bounds. Please review it. | [] |
2,007 | Error in Interactive mode in IPython == 8.x.x : ### Describe the error
The interactive mode (running `manimgl` in shell) doesn't work and throws errors on every command execution.
### How to replicate
1. Execute `manimgl` in the terminal with IPython==8.11.0.
2. Type `sq = Square()` and the error should appear (e... | [
"It's working in my system. Try building the latest commit. Install it via command `pip install -e .`\r\n\r\n**OS**: Windows 11\r\n**Python**: 3.10.9\r\n**IPython**: 8.10.0\r\n**ManimGL**: Latest Commit (master branch)",
"Interesting. I did nothing and it magically works now. Maybe some package updates? No idea.\... |
2,006 | imports manim : Manim is very troublesome to introduce libraries | [
"No its not\r\n"
] |
2,005 | Manim OSError: [WinError 6] : ### Describe the error
用pycharm运行manimgl无法调用latex,一直报错OSError: [WinError 6],请问如何解决?
### Code and Error
**Code**:
from manimlib import *
class demo(Scene):
def construct(self):
c = TexText("I am a speedmeter")
s = Speedometer()
self.play(FadeIn(c))
... | [
"Plase see [this](https://www.bilibili.com/read/cv18012785?from=search)",
"> Plase see [this](https://www.bilibili.com/read/cv18012785?from=search)\r\n\r\nThank you for the answer, I have solved the problem"
] |
2,004 | (Willing to PR) Add snapshot testing, linters, and CI? : Hi thanks for the great library and your (i.e. @3b1b's) great math videos! Given its popularity (50k stars), it would be great to add a bit of software engineering. For example:
1. Linters: Catch common errors, bad practices, etc. Given that the repo has type ... | [
"Ah I see, the community fork already has these :)"
] |
2,003 | An example of manim pi creature scene with different emotions of them : Here we found some pi creatures: https://www.3blue1brown.com/images/pi-creatures/happy.svg and so on, the "happy.svg" can be replaced by other "modes" that appear in 3b1b's video source code (like "hooray" and "sad"). These pi creatures are shown ... | [] |
2,000 | I had a problem while downloading manim : ### Describe the bug
When I used pip3 install manim, i run into this error
**Code**:
fatal error: 'cairo.h' file not found
#include "cairo.h"
^~~~~~~~~
1 error generated.
error: command '/usr/bin/clang' failed with exit code 1
[... | [
"I think you are using the community version of manim, so please read README.md in [ManimCommunity/manim](https://github.com/ManimCommunity/manim) or ask this question on their discord channel or open an issue in ManimCommunity/manim instead of here."
] |
1,995 | Running Manim : Hello!
So I installed manim successfully (I think) and I have been trying some test runs to see if it works or not. I am still new to programming, so there might be an obvious thing I am missing. It mentions that there are a couple of non-recognized stuff so, I was wondering what went wrong. Any help w... | [
"If you are new to programming, I suggest you use the [Manim community](https://github.com/ManimCommunity/manim) version which is documented, 3b1b manim is not, so it can be a bit tricky to install and use.",
"And you are also not using manimgl. I think the manim you use is very old (i.e. cairo-backend), so pleas... |
1,994 | Several bug fixes : - Add options for saturation on colors in exported videos
- Ensure joint_products are refreshed for _AnimationBuilder
- Fix transparent background videos | [] |
1,992 | Fix for index -3 error : In response to https://github.com/3b1b/manim/issues/1991 | [] |
1,991 | IndexError: index -3 is out of bounds for axis 0 with size 0 : ### Describe the error
<!-- A clear and concise description of what you want to make. -->
I followed the instruction in 3b1b/manim and installed manim, but when I tried it out(use the command below), it seems that something in index went wrong.
> #Try it... | [
"@3b1b, this error occurred in my case too. To resolve this issue, I added the following lines in `vectorized_mobject.py` at line 549\r\n```python\r\nif len(points) == 0:\r\n return False\r\n```\r\nI'm not sure if this is the right way to do that. But, it seemed to resolve the error. Is there any other way to r... |
1,989 | A few more fixes and tweaks. : - FIx Mobject.replace_shader_code
- Make prerunning a scene (to count the total number of frames) optional, and default to false
- Add set_program_uniform function which only changes uniforms values if necessary
- Fix undo/redo/checkpoint paste in light of render groups
- Make Mobject... | [] |
1,988 | Several minor fixes : - Don't copy Transform.target_mobject if it already aligns with Transform.mobject
- Lock uniform keys, analogous to how data keys lock, during Transform
- Use resize_points in Mobject.set_data (which in turns makes sure outer_vert_indices are always correct) | [] |
1,987 | Interactive scene update : - Change the behavior of clicking (it does not select mobjects by default)
- Allow for copying a command that will animate to the current frame position
- Better mobject copying during Scene embeds | [] |
1,986 | A few small performance improvements : - Have the group together common types to be rendered together
- Various changes to marginally speed up VMobject.get_shader_wrapper_list
(This PR also includes a few other miscellaneous tweaks) | [] |
1,985 | Cleaner winding fill : This fixes some issues with alpha-blending when using winding fill, namely strange shadow effects when something with higher opacity is blended one something with lower opacity. In doing so, it offers a cleaner approach to the whole algorithm, essentially just using a certain alpha blending funct... | [] |
1,984 | Use typing_extensions to import Self for python versions <3.11 : In response to @TonyCrane's [suggestion](https://github.com/3b1b/manim/pull/1981#issuecomment-1413882723) | [] |
1,983 | Errors occured during testing installed manimgl : ### Describe the error
<When attempting to test the function of installed manimgl, an error 'COM MTA not set' occured and with multiple trace back, but no image or picture were shown. Wonder if it is the pyglet glitch or something else.>
### Code and Error
**Code**... | [
"> an error 'COM MTA not set' occured\r\n\r\nThat is JUST a warning.\r\n\r\nThe critical error is that there are erros in the `default_config.yml` file. Take a look at the end of the traceback:\r\n```text\r\nin \"c:\\users\\account\\anaconda3\\lib\\site-packages\\manimlib\\default_config.yml\", line 18, column 22\r... |
1,982 | Various bug fixes and tweaks : - Fix shadow glitch in https://github.com/3b1b/manim/issues/1405
- Allow setting mult-color style with tuples
- Fix a glitch with how strokes looked during Write animation
- Fix Camera.blit
- Make fill border draw on top by default | [] |
1,981 | Add Self type : Add [Self](https://peps.python.org/pep-0673/) as the return type for many Mobject methods | [
"However, `Self` is new in python 3.11 (as stated in PEP 673 is for version 3.11). So after adding `Self` in this PR, manim will not work with 3.10 and earlier, and will raise the following exception.\r\n\r\n```text\r\nImportError: cannot import name 'Self' from 'typing'\r\n```\r\n\r\nA workaround is to use the [ty... |
1,980 | Change VMobject rendering mode to TRIANGLES : One theory for what's going on with https://github.com/3b1b/manim/issues/1975#issuecomment-1410906866 and https://github.com/3b1b/manim/issues/1405#issuecomment-1410741180 is that the usage of gl_VertexID was causing problems. This removes dependence on that. | [] |
1,979 | Various bug fixes : - Improve unit normal handling for SurfaceMobject
- Fix multi-color setting issue
- Change defaults for scrolling and dragging in window interactions | [] |
1,978 | Possible fix for a type error : Possible fix for https://github.com/3b1b/manim/issues/1976 | [] |
1,977 | Various clean ups associated with 3d scenes : - Make sure depth sampling works with new fill rendering
- Add simple ThreeDScene
- Fix pixel_coords_to_space_coords for the 3d case
- Refactor how frame scaling is handled | [] |
1,976 | TypeError when running "manimgl example_scenes.py OpeningManimExample" : ### Describe the error
After a fresh install (macOS Ventura 13.1), the starting example does not work for me.
### Code and Error
**Code**:
```
manimgl example_scenes.py OpeningManimExample
```
**Error**:
```
ManimGL v1.6.1
[18:49:0... | [
"I'm not seeing the same issue, but it's possible [this](https://github.com/3b1b/manim/pull/1978) might fix it. Do you mind checking?\r\n\r\nIf not, can you share what version of numpy you have?",
"That did work for me! Thanks a lot!"
] |
1,975 | Getting an error: "UserWarning: Could not set COM MTA mode. Unexpected behavior may occur." [Pyglet Error] : ### Describe the error
<!-- A clear and concise description of what you want to make. -->
In any scene that I am running, whether it's in preview mode or not, I am getting the mentioned error. I searched every... | [
"Can you share an image showing how the rendering is messed up? And is there any kind of stack trace, or line number, associated with the warning?",
"The error I got was just I mentioned: Line 326 from pyglet `libs\\win32\\__init__.py` package.\r\n\r\n**Error**: `..\\pyglet\\libs\\win32\\__init__.py:326: UserWar... |
1,974 | Miscellaneous bug fixes : - Edits to winding fill to ensure it works better with transparency and works regardless of orientation
- Fix issues with arrow and variable stroke width
- Various fixes based on recent changes to ShaderWrapper | [] |
1,973 | Refactor render out of camera (plus winding fill blending fix) : Move the rendering logic away from camera.py and instead move it into the shader wrappers. Previously camera would keep track of which mobjects were actively changing and store a nebulously named dictionary called "render_group" to keep track of data buff... | [] |
1,972 | Winding fill : There have been many issues associated with triangulating VMobjects to illustrate their fill. Transforms between VMobjects with fill often show strange triangulation artifacts and can be laggy when the triangulation needs to be recomputed on each frame.
This change introduces a mode that obviates the ... | [] |
1,971 | Video work : Various tweaks made while working on a video. Aside from various bits of clean-up, this adds the ability to record the results of a pasted code snippet to video during a Scene embed. This involved syncing up the window size to properly match that of the camera configuration. | [] |
1,969 | Make isinstance check work for python 3.7-3.9 : The type union operator wasn't added until Python 3.10. This was added a few days ago, which caused manim to crash with a TypeError for earlier versions of Python. This CL causes the code to do the same thing, but it works for <3.10 versions of Python too.
Fixes #1968 | [] |
1,968 | Recent commit breaks manim for Python <3.10 : AFAICT, commit dbeef4260096b175a7131081edb46ce4b31fb356 breaks manim for Python <3.10. `int | float` isn't valid until 3.10, so dbeef4260096b175a7131081edb46ce4b31fb356 causes a TypeError for earlier Python versions.
https://docs.python.org/3.10/whatsnew/3.10.html#pep-60... | [] |
1,967 | Miscellaneous fixes : Various bug fixes associated with recent changes to the rendering pipeline. | [] |
1,966 | Various render improvements : Most changes here were initially motivated by fixing certain bugs with vector graphics to make them behave better in three dimensions.
It also includes several other simplifications and clean-up to other old shaders. | [] |
1,965 | Data arrays : Change to storing Mobject data using a structure numpy array rather than a dict of arrays. This lines up more directly with how that data gets passed to the GPU, so prevents the need for re-reading the data from one location to another before rendering. | [] |
1,964 | Fix index buffer bug : Small fix from an oversight in https://github.com/3b1b/manim/pull/1959
(Along with some small tweaks) | [] |
1,962 | Updated tqdm to support also notebooks : ## Motivation
When using `tqdm` in the context of Jupyter Notebooks, the CLI version does not cut it.
## Proposed changes
For this reason, the `tqdm` authors created the `tqdm.auto` dispatching, which displays an optimal version of `tqdm` for either CLI or jupyter notebooks... | [] |
1,961 | Misspelled "EventListener" on multiple occasions : ### Describe the bug
The word "EventListener" is being spelled as "EventListner". I'm not sure if this is intentional.
### Additional context
https://github.com/3b1b/manim/blob/master/manimlib/event_handler/event_listner.py
| [
"Thanks! Fixed [here](https://github.com/3b1b/manim/pull/1979)."
] |
1,959 | Simplify quadratic bezier shaders : This includes a number of meaningful updates to vector graphic rendering, motivated by performance and cleanliness.
One aim was to simplify the relevant shaders so as to not needlessly do more work than they have to, or store more data than is needed.
This also involves changin... | [] |
1,957 | Refactor TransformMatchingStrings/TransformMatchingShapes : Together with a few small miscellaneous changes. | [] |
1,956 | Using MObject.become method within a updater results in a loss of reference to the screen object. : Consider the following example:
```
class Example(Scene):
def construct(self):
rateOfChange = ValueTracker(1.00)
def generateText():
return MathTex(rateOfChange.get_value())
... | [
"I think this is meant for the [ManimCommunity repo](https://github.com/manimCommunity/manim).\r\n\r\nThis particular issue is not because of Mobject.become, when generateText returns an object, it's always creating a new one that is centered. So as the updater continues to work, it overrides the animation attempti... |
1,955 | update the year :
## Proposed changes
<!-- What you changed in those files -->
- Changed the year in the Licence to current year
| [] |
1,954 | Unable to remove a object on the screen when using an updater : I have the following code:
```
class Example2(Scene):
def construct(self):
step = ValueTracker(1)
square = Square()
circle = Circle()
self.add(circle)
self.add(square)
def circleU... | [
"This issue may be meant for the ManimCommunity repo, the example you listed works fine here."
] |
1,953 | More tweaks and fixes : - Add Tex.make_number_changable (see TexAndNumbersExample in example_scenes.py)
- Interpolate colors using square of rgbs
- Fix various little bugs
- Mobject.looks_identical failed for non-numpy array data attrs
- LaggedStartMap failed with FlashAround
- Camera.get_pixel_array r... | [] |
1,952 | More miscellaneous tweaks and fixes : - Clean up and fix Improve num_tex_symbols
- Which in turn fixes issues for indexing into Tex mobjects by strings
- Add Mobject.has_same_shape_as method
- Use it to prevent needless recomputations of triangulation in VMobject transforms
- Fix issue with VMobject.get_sha... | [] |
1,951 | Small tweaks and fixes : | [] |
1,950 | Miscellaneous fixes and tweaks : - Simplify Scene.remove to not require a Mobject.get_ancestors call
- Various bug fixes for Tex
- Write an alternate TransformMatchingStrings / TransformMatchingTex
- No longer track unit normal in VMobject data
- Fix some antialiasing bugs for VMobject fill
- Some speed-ups associ... | [] |
1,949 | Typing Issue: Functions explicitly marked as return `None` but returning self : Just stumbled upon these two functions and they explicitly return `None` but also return self. Is this intended?
https://github.com/3b1b/manim/blob/a0c46ef3bfbeb5cb0eb46f11431cdb02e133cf49/manimlib/mobject/mobject.py#L676-L684 | [
"Not intended, thanks for the catch.\r\n\r\nWhat's more appropriate is to have the return type for most Mobject methods be \"Self\", which is I think is new to Python 3.11"
] |
1,948 | Request to remove static decorators to resolve the recent issue : TypeError: 'staticmethod' object is not callable : <!-- Thanks for contributing to manim!
Please ensure that your pull request works with the latest version of manim.
-->
## Motivation
<!-- Outline your motivation: In what way do your changes i... | [
"The `@affects_shader_info_id` `@stash_mobject_pointers` and `@triggers_refreshed_triangulation` shouldn't be deleted.\r\n\r\nThe problem comes from the two commits https://github.com/3b1b/manim/pull/1943/commits/580d57a45c28ac99ed5acdbd2a223804287cd76c and https://github.com/3b1b/manim/pull/1943/commits/db52d0a73f... |
1,947 | Unused Function `digest_mobject_attrs` : I'm not quite sure if this function is used anymore. It was last changed about 3 years ago and doesn't seem to be used anymore and has no references either.
https://github.com/3b1b/manim/blob/fcff44a66b58a3af4070381afed0b4fad80768be/manimlib/mobject/mobject.py#L416-L423
(C... | [
"You're definitely safe to delete/ignore it. If for no other reason, it's a very sketchy bit of code!\r\n\r\nIt was used for some old 3b1b animations back in the day, and the only reason I didn't delete it while going through things recently was to keep those only scenes from breaking (or at least, keeping them fr... |
1,945 | When running Example getting TypeError: 'staticmethod' object is not callable : ### Describe the error
i have install the manim as per the instruction given on the documentation, when running the example getting TypeError: 'staticmethod' object is not callable
### Code and Error
**Code**:
manimgl example_scenes.... | [
"Same here too.",
"It works after I removed the static decorators in manim/manimlib/mobject/mobject.py and manim/manimlib/mobject/types/vectorized_mobject.py.\r\n\r\nI submitted a pull request. Let's see.",
"Fixed in #1951"
] |
1,943 | StringMobject refactor : - Make MTex the new Tex
- Rename Tex to OldTex, it should be completely removed from manim, but may stay alive in the 3b1b/videos repo for backwards compatibility
- Add an option allowing StringMobject allowing it to only render one svg rather than two
- Make this the default behavio... | [] |
1,942 | Refactor config.py : | [] |
1,941 | Small bug fixes and refactors : - Better height, width, unit_size behavior for CoordinateSystems
- Go back to writing a new file for insert_embed, handling __file__ issue differently | [] |
1,940 | Single svg write : Minimal changes to illustrate behavior of StringMobject with a single svg write | [
"@YishiMichael, I'm trying to better understand why MTex will write two svgs rather than just one. I realize the intent is to have one which doesn't have all the color labeling and to use the color-labeled one purely to generate spans etc., but why not just create the color-labeled one alone and use that? The style... |
1,939 | Single svg write : Minimal changes to illustrate behavior of StringMobject with a single svg write | [] |
1,938 | Small refactors and bug fixes : A few bits of cleanup | [] |
1,937 | Small bug fixes and refactorings : - Several bug fixes associated with https://github.com/3b1b/manim/pull/1932
- Refactor checkpoint_paste
- Change functionality of -e flag to rewrite file in place, rather than creating an alternate file | [] |
1,936 | Running the example code works briefly and then generates a stack trace and exits : ### Describe the error
Running the example code works briefly and then generates a stack trace and exits
### Code and Error
```
$ manimgl example_scenes.py OpeningManimExample
```
**Error**:
```
sh: latex: command not found{... | [
"The instructions for MacOS simple say to use 'brew install ffmpeg mactex'. This does not seem to make LaTeX available anywhere, which may be the issue. Perhaps this is just a documentation problem?",
"I resolved this by augmenting my PATH. Apparently, brew doesn't put the TeX stuff in the usual brew place and do... |
1,932 | Kill config : - Removing usage of CONFIG dicts, handling that state either in __init__ parameters are class variables, depending on which makes more sense to the user.
- Add clearer type hints throughout
- A few bits of refactoring and cleanup throughout the library
- Removing old or unused constructs which were spe... | [
"@TonyCrane Just a heads up, I think this may affect some of your documentation. I'm guessing it makes sense to simply delete the page of the docs talking about CONFIG dicts?",
"> @TonyCrane Just a heads up, I think this may affect some of your documentation. I'm guessing it makes sense to simply delete the page ... |
1,931 | Video work : Minor tweaks | [] |
1,930 | feat: modify animations : <!-- Thanks for contributing to manim!
Please ensure that your pull request works with the latest version of manim.
-->
## Motivation
<!-- Outline your motivation: In what way do your changes improve the library? -->
## Proposed changes
<!-- What you changed in those files -->
-... | [
"Misoperation, sorry for that."
] |
1,929 | "Union" not that smooth : I'm not sure if only me encounter this problem | [
"I'm not sure what examples you're referencing. Feel free to share a specific case where the behavior is undesired, but the quick ones I try seem to work fine."
] |
1,928 | Link to all pi creature svgs : https://github.com/CaftBotti/manim_pi_creatures
Please see the readme.md. | [
"https://github.com/CaftBotti/manim_pi_creatures\r\nPlease see the readme.md"
] |
1,927 | Fix 2 typos : In manim cairo-backend, line 127 and 131,
Fixing typo: "ipmlemented" to "implemented" ; "understanable" to "understandable" | [
"Forced reverted, since cairo-backend branch should not receive any new changes."
] |
1,925 | Different expressions of pi creatures were found. Should we put them in the repository? : Now all pi creatures are able to get:
https://github.com/CaftBotti/manim_pi_creatures
They are from 3blue1brown.com, maybe they are using in 3b1b videos.
That repository also includes pi_creature.py, it is from cairo-backend, b... | [
"No.\r\nI think pi creatures are copyrighted by 3Blue1Brown (Grant) and they should not exist in this open source engine repo. And Grant probably moved the code about pi creatures that he only wanted to use in his videos out of this repo because of that."
] |
1,924 | Fix bug: Issue#1844 Modified is_off_screen() function : <!-- Thanks for contributing to manim!
Please ensure that your pull request works with the latest version of manim.
-->
## Motivation
To fix the issue https://github.com/3b1b/manim/issues/1844#issue-1317730247
## Proposed changes
- Changed the comparis... | [
"See https://github.com/3b1b/manim/issues/1844#issuecomment-1345285896"
] |
1,923 | correcting python version : correcting the python version on the readme file. | [
"Manim is not available on python 2."
] |
1,920 | Invalid color type Exception occured running ControlsExample in example_scenes.py : I ran the ControlsExample in example_scenes.py
```
manimgl .\example_scenes.py ControlsExample
```
and this Exception occured:
```
Traceback (most recent call last):
File "E:\Anaconda\lib\runpy.py", line 194, in _run_module_as_... | [
"Thanks, I believe this is fixed [here](https://github.com/3b1b/manim/pull/1979)."
] |
1,918 | Incorrect text rendered for the "XOR" string : Hi,
I'm using manim on Ubuntu 18.04 with the Python 3.9.12 installed.
This is the `manim --version` output : Manim Community v0.16.0.post0
I'm trying to Write : "XOR" and display it.
However, it is displaying **OXR** instead of XOR
**Code**:
```
from manim i... | [
"You are using the community version of manim. So please ask this question in there discord channel or open an issue in ManimCommunity/manim instead of here."
] |
1,916 | How to get the latest version of manim? I try "git" and "zip" both, but terminal still showed 'manimgl v1.5.0' : How to get the latest version of manim? I try "git" and "zip" both, but terminal still showed 'manimgl v1.5.0'

AttributeError: 'Cube' object has no attribute 'set_fill'
## Expected behavior:
Being able to inst... | [
"Thanks! I believe this is now fixed."
] |
1,908 | closed : closed | [] |
1,907 | Dose any one got the same problem as mine? Help me,please! No module named 'validators.between'. : ### Describe the error
<!-- When I finished manim setup progress, I tried to run the example code then it trace back an error which made me anxiety. Because it seems like a simple problem of lack of a module but I can't ... | [] |
1,906 | Video work : Latest updates as of the discrete convolutions video. Changes include:
- Fixing issue where clipping rate functions prevents desirable behavior with lagged start and rate functions with ranges outside [0, 1]
- Updates to Axes.bind_graph_to_func
- Add ThreeDAxes.get_graph
- Slight changes to progress di... | [] |
1,905 | I met this error : GLib-GIO-WARNING **: 23:30:36.872: Unexpectedly, UWP app `Clipchamp.Clipchamp_2.5.5.0_neutral__yxz26nhyzhsrt' (AUMId `Clipchamp.Clipchamp_yxz26nhyzhsrt!App') supports 41 extensions but has no verbs
python3.9
| [
"Just unistall this app: Clipchamp",
"I had the same error, and like @ospqul said, uninstalling it solved the issue."
] |
1,903 | closed : closed | [] |
1,901 | closed : closed | [] |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 16