-
Couldn't load subscription status.
- Fork 2.5k
Closed
Labels
good first issueGood for newcomersGood for newcomers
Description
Description of bug / unexpected behavior
The Quickstart tutorial recommends the use of manim init project but this creates a manim.cfg file which distorts the default coordinate system used by Manim.
The use of manim init project is not necessary and should probably be removed from the Quickstart tutorial.
Expected behavior
If anything, manim init project shoukld not create a configuration file which corrupts Manim's default settings.
How to reproduce the issue
run
manim init project my-project --defaulton the command line and then switch to the created project directory and run the scene as
manim -p main.py DefaultTemplateAdding a number plane to the created template code highlights the problem. The script is rendered in portrait mode with a highly reduced width of the scene.
from manim import *
class DefaultTemplate(Scene):
def construct(self):
self.add(NumberPlane().add_coordinates())
circle = Circle() # create a circle
circle.set_fill(PINK, opacity=0.5) # set color and transparency
square = Square() # create a square
square.flip(RIGHT) # flip horizontally
square.rotate(-3 * TAU / 8) # rotate a certain amount
self.play(Create(square)) # animate the creation of the square
self.play(Transform(square, circle)) # interpolate the square into the circle
self.play(FadeOut(square)) # fade out animationSystem specifications
System Details
- OS Windows 10
- Python version (
python/py/python3 --version): 3.13.0
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers
Type
Projects
Status
🆕 New
