manimの作法 その3
概要
manimの作法、調べてみた。
BarChart、使ってみた。
サンプルコード
from manimlib.imports import *
class test(Scene):
def construct(self):
values = list([0.1, 0.5, 0.7, 0.3])
names = list(range(4))
chart = BarChart(values, bar_names = names)
self.add(chart)
self.wait()
結果
from manimlib.imports import *
class test(Scene):
def construct(self):
values = list([0.1, 0.5, 0.7, 0.3])
names = list(range(4))
chart = BarChart(values, bar_names = names)
self.add(chart)
self.wait()
以上。
Author And Source
この問題について(manimの作法 その3), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/3274f35c06a564e545aa著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .