(self)
| 166 | |
| 167 | class LineJoints(Scene): |
| 168 | def construct(self): |
| 169 | t1 = Triangle() |
| 170 | t2 = Triangle(joint_type=LineJointType.ROUND) |
| 171 | t3 = Triangle(joint_type=LineJointType.BEVEL) |
| 172 | |
| 173 | grp = VGroup(t1, t2, t3).arrange(RIGHT) |
| 174 | grp.set(width=config.frame_width - 1) |
| 175 | |
| 176 | self.add(grp) |
| 177 | |
| 178 | |
| 179 | # See many more examples at https://docs.manim.community/en/stable/examples.html |