3b1b / 3b1b/manim

Mistake in Quickstart Tutorial

オープン 初心者向け
#2,080 コメント 1 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
Python
スター
93.8k
フォーク
7.7k
PR マージ指標
PR 指標を取得中

説明

https://docs.manim.community/en/stable/tutorials/quickstart.html
![image](https://github.com/3b1b/manim/assets/45933261/48c67383-3f82-4466-a98e-dfc12f6acefe)
The explanation says that the rotation is 360 degrees but as can be seen from the corresponding code below, the rotation is actually 180 degrees.
class DifferentRotations(Scene):
def construct(self):
left_square = Square(color=BLUE, fill_opacity=0.7).shift(2 * LEFT)
right_square = Square(color=GREEN, fill_opacity=0.7).shift(2 * RIGHT)
self.play(
left_square.animate.rotate(PI), Rotate(right_square, angle=PI), run_time=2
)
self.wait()

The interpolation of a rotation of 360 degrees results in a complete lack of any animation(can be observed by changing rotation to 2*PI for left_square.

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

調査の方向性

The issue points to a specific documentation file: docs/tutorials/quickstart.html. Locate the corresponding source file (likely in the docs/ directory, possibly in reStructuredText or Markdown format). Find the section describing the DifferentRotations example and correct the text stating 360 degrees to 180 degrees, matching the code shown (PI radians = 180 degrees). Verify the change by building the documentation locally or checking the rendered output.

索引モデルが issue の本文から書いたものです。

評価

技術スタック
python
領域
documentation
issue の種類
ドキュメント
難易度
1/5
見積もり時間
1時間未満
活発さ
停滞
明瞭さ
明確に書かれている
初心者へのやさしさ
85/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。