You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from manimlib import * class Test(Scene): def construct(self): circleRadiusLabel = Text("r=4m", font_size=36, color=RED) self.play(Write(circleRadiusLabel))
This is my code.
I found that this code works fine in interactive mode, as shown in the following figure
But after saving it as a video, the last few characters of the text in the animation are blurred after playing, and it feels like SVG has not finished rendering, as shown in the following figure.
Have you ever encountered this problem? I feel that this problem is easy to occur
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
from manimlib import * class Test(Scene): def construct(self): circleRadiusLabel = Text("r=4m", font_size=36, color=RED) self.play(Write(circleRadiusLabel))
This is my code.
I found that this code works fine in interactive mode, as shown in the following figure
But after saving it as a video, the last few characters of the text in the animation are blurred after playing, and it feels like SVG has not finished rendering, as shown in the following figure.
Have you ever encountered this problem? I feel that this problem is easy to occur
I am using tag v1.6.1
Beta Was this translation helpful? Give feedback.
All reactions