Skip to content

Commit 27d5360

Browse files
author
szchixy
authored
fix line_join to joint_type in example_scenes/basic.py (#3510)
1 parent 40766cb commit 27d5360

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example_scenes/basic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ def construct(self):
167167
class LineJoints(Scene):
168168
def construct(self):
169169
t1 = Triangle()
170-
t2 = Triangle(line_join=LineJointType.ROUND)
171-
t3 = Triangle(line_join=LineJointType.BEVEL)
170+
t2 = Triangle(joint_type=LineJointType.ROUND)
171+
t3 = Triangle(joint_type=LineJointType.BEVEL)
172172

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

0 commit comments

Comments
 (0)