Skip to content

Commit

Permalink
fix line_join to joint_type in example_scenes/basic.py (ManimCommunit…
Browse files Browse the repository at this point in the history
  • Loading branch information
szchixy authored Dec 9, 2023
1 parent 40766cb commit 27d5360
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example_scenes/basic.py
Original file line number Diff line number Diff line change
@@ -167,8 +167,8 @@ def construct(self):
class LineJoints(Scene):
def construct(self):
t1 = Triangle()
t2 = Triangle(line_join=LineJointType.ROUND)
t3 = Triangle(line_join=LineJointType.BEVEL)
t2 = Triangle(joint_type=LineJointType.ROUND)
t3 = Triangle(joint_type=LineJointType.BEVEL)

grp = VGroup(t1, t2, t3).arrange(RIGHT)
grp.set(width=config.frame_width - 1)

0 comments on commit 27d5360

Please sign in to comment.