Manim CEにおいて、標準の背景色は黒ですが、他の色に変更したい場合は、self.camera.background_colorに以下のように色を指定します。
1
2
3
4
5
6
7
8
9
10
11
12
|
| from manim import *
class ChangeBackgroundColor(Scene):
def __init__(self):
super().__init__()
self.camera.background_color = GOLD_A
def construct(self):
vof_desc1 = Text('VOF法によるコンクリート流動解析', color=BLACK, font_size=36, font='Meiryo').to_edge(UP, buff=0.5)
self.add(vof_desc1)
|
作成された図は以下の通りです。