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
when I add DashedVMobject of Square ,only horizon side were displayed. Code: class Test(Scene): def construct(self): square = Square() dashed_square = DashedVMobject(square) self.add(dashed_square) # Display abnormal self.add(square.get_subcurve(0, 0.25)) # Display normal self.add(square.get_subcurve(0.25, 0.5)) # Display Nothing
Wrong display or Error traceback:
system archlinux . cpu intel i7-4770 graphic Intel(R) HD Graphics 4600
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
when I add DashedVMobject of Square ,only horizon side were displayed.
Code:
class Test(Scene):
def construct(self):
square = Square()
dashed_square = DashedVMobject(square)
self.add(dashed_square) # Display abnormal
self.add(square.get_subcurve(0, 0.25)) # Display normal
self.add(square.get_subcurve(0.25, 0.5)) # Display Nothing
Wrong display or Error traceback:
Additional context
system archlinux .
cpu intel i7-4770
graphic Intel(R) HD Graphics 4600
The text was updated successfully, but these errors were encountered: