背景色を変更する
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*[[背景色を変更する]] [#lbbf0f78]
[[Manim CE:https://github.com/ManimCommunity/manim/]]において、標準の背景色は黒ですが、他の色に変更したい場合は、''self.camera.background_color''に以下のように色を指定します。
#code(python){{
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)
}}
作成された図は以下の通りです。
#ref(ChangeBackgroundColor.png,center,nowrap,80%, ChangeBackgroundColor);
終了行:
*[[背景色を変更する]] [#lbbf0f78]
[[Manim CE:https://github.com/ManimCommunity/manim/]]において、標準の背景色は黒ですが、他の色に変更したい場合は、''self.camera.background_color''に以下のように色を指定します。
#code(python){{
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)
}}
作成された図は以下の通りです。
#ref(ChangeBackgroundColor.png,center,nowrap,80%, ChangeBackgroundColor);
ページ名: