사랑하는 사람에게
Math2023. 12. 22. 16:54사랑하는 사람에게

https://youtube.com/shorts/GDwlkotFxn0 - YouTube www.youtube.com from manim import * from colour import Color class h1(Scene): def construct(self): scale_factor = 0.1 heart_curve = ParametricFunction( lambda t: np.array([ scale_factor * 16 * np.sin(t)**3, scale_factor * (13 * np.cos(t) - 5 * np.cos(2*t) - 2 * np.cos(3*t) - np.cos(4*t)), 0 ]), color="#FF0000", t_range=[0, 2 * PI] ) formula_text =..

image