We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the line rotate a angle, and then set a text next to one end point~ but it doesn't work. How can i do it correctly.
class example(Scene):
def construct(self): line=Line(ORIGIN,RIGHT*2) line.rotate(PI/3,about_point=ORIGIN) text=TextMobject('A') text.next_to(line.get_right(),LEFT,buff=0.1) self.add(line,text) self.wait()
The text was updated successfully, but these errors were encountered:
text.next_to(line.get_end(),RIGHT)
Sorry, something went wrong.
@Elteoremadebeethoven thanks a lot~ I learned manim from your video. glad to get the answer from you.
A typo in a comment? That cannot stand! (3b1b#736)
21dbc9a
Co-authored-by: Aron Fischer <co-bordism on gitlab>
No branches or pull requests
the line rotate a angle, and then set a text next to one end point~ but it doesn't work.
How can i do it correctly.
class example(Scene):
The text was updated successfully, but these errors were encountered: