We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40766cb commit 27d5360Copy full SHA for 27d5360
example_scenes/basic.py
@@ -167,8 +167,8 @@ def construct(self):
167
class LineJoints(Scene):
168
def construct(self):
169
t1 = Triangle()
170
- t2 = Triangle(line_join=LineJointType.ROUND)
171
- t3 = Triangle(line_join=LineJointType.BEVEL)
+ t2 = Triangle(joint_type=LineJointType.ROUND)
+ t3 = Triangle(joint_type=LineJointType.BEVEL)
172
173
grp = VGroup(t1, t2, t3).arrange(RIGHT)
174
grp.set(width=config.frame_width - 1)
0 commit comments