ArrowCircleTip and ArrowCircleFilledTip isn't working #1597
-
Hi, I'm trying to run the following code:
And I get a long list of errors in my command prompt when running the code. It seems to me that the objects arent defined in manimlib somehow - but I'm not that advanced to find the correct solution. How can I define the objects? Or what am I missing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In manimgl, there is no And |
Beta Was this translation helpful? Give feedback.
In manimgl, there is no
ArrowCircleTip
orArrowCircleFilledTip
. But they are in the community version of manim: ManimCommunity/manim.And
ArrowCircleTip
andArrowCircleFilledTip
are just circles, I guess you want to use likeArrow([2, 0, 0], [-2, 0, 0], tip_shape=ArrowCircleTip)
. And in manimgl, you can get the same result by usingLine([2, 0, 0], [-2, 0, 0]).add_tip(tip_style=2)