背景色を変更する

Manim CEにおいて、標準の背景色は黒ですが、他の色に変更したい場合は、self.camera.background_colorに以下のように色を指定します。

Everything is expanded.Everything is shortened.
  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)

作成された図は以下の通りです。

 ChangeBackgroundColor

添付ファイル: fileChangeBackgroundColor.png 63件 [詳細]

トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2024-06-12 (水) 08:12:34 (118d)