python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
what it is an iterable of floats/complex numbers?
I am someone who is learning manim in a self-taught way but I have come across the term "iterable of floats/complex numbers" in the "get_coordinate_labels" method of the class Comp...
Pokeamigo 1
Votes: 0
Answers: 1
Problem with Python PIL/dylib and compatibility with macOS
EDIT: Please check the comment I wrote below
I am running macOS High Sierra 10.13.6 and I think I have downloaded a version for PIL library(using brew install py3cairo probably) that is not compatible...
Anonymous
Votes: 0
Answers: 1
How do I apply multiple linear transformations?
I'm trying to use LinearTransformationScene's apply_matrix multiple times:
from manim import *
class LT(LinearTransformationScene):
def __init__(self):
super().__init__(
self,...
Tsiolkovsky
Votes: 0
Answers: 1
Creating circles inside of an circle in Manim?
I want to create this image with manim. I created this image with the following code:
class Circles(Scene):
def construct(self):
circleOne = Circle()
circleTwo = Circle()
c...
Max Hager
Votes: 0
Answers: 1