# -- coding utf-8 --from manim import from turtle import colorfrom manim import MathTexclass CircleToSquareScene def constructself equation = Text定义钱里 selfplayWriteequation sel
在代码中,您使用了一个错误的字符串作为参数来创建Text对象。正确的做法是将每个字符串分别作为参数传递给Text对象。此外,您还可以使用MathTex对象来显示数学公式。以下是修改后的代码:
# -*- coding: utf-8 -*-
from manim import *
class CircleToSquare(Scene):
def construct(self):
equation = MathTex("\\text{定义}", "\\text{钱}", "\\text{里}")
self.play(Write(equation))
self.wait()
if __name__ == "__main__":
scene = CircleToSquare()
scene.render()
这样修改后,您将能够正确显示定义、钱和里这三个字符串。
原文地址: https://www.cveoy.top/t/topic/iTwr 著作权归作者所有。请勿转载和采集!