You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am animating a DashedLine, using put_start_and_end_on() in an updater. This stretches the dashes, making them inconsistent with other DashedLines, when the length changes.
Expected behavior
I would like to have consistent dash geometries among all my dashed lines, so the number of dashes would have to be recomputed when I change the line length. I would be fine with calling an extra method in my updater, but right now the code in __init__ does not lend itself to being copied into an updater.
My DashedLine has a number of properties, making it less attractive to use .become than in the above example. But I am new to manim, so maybe I am overlooking something.
The text was updated successfully, but these errors were encountered:
Description of bug / unexpected behavior
I am animating a DashedLine, using
put_start_and_end_on()
in an updater. This stretches the dashes, making them inconsistent with other DashedLines, when the length changes.Expected behavior
I would like to have consistent dash geometries among all my dashed lines, so the number of dashes would have to be recomputed when I change the line length. I would be fine with calling an extra method in my updater, but right now the code in
__init__
does not lend itself to being copied into an updater.How to reproduce the issue
Code for reproducing the problem
Additional media files
Images/GIFs
MovingDots.mp4
Additional comments
My DashedLine has a number of properties, making it less attractive to use .become than in the above example. But I am new to manim, so maybe I am overlooking something.
The text was updated successfully, but these errors were encountered: