
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
manimの作法 その13 - Qiita
from manimlib.imports import * class test(GraphScene): CONFIG = { "x_labeled_nums": [], "y_labele... from manimlib.imports import * class test(GraphScene): CONFIG = { "x_labeled_nums": [], "y_labeled_nums": [], "x_axis_label": "Temperature", "y_axis_label": "Pressure", "graph_origin": 2.5 * DOWN + 2 * LEFT, "corner_square_width": 4, "example_point_coords": (2, 5), } def construct(self): self.setup_axes() self.draw_arrow() self.add_example_coordinates() self.wander_continuously() def draw_arrow(se