Convenience method creating and registering a `CurvePrim`.
(self, points, degree=None, color=None, width=2)
| 638 | self.primitives.remove(primitive) |
| 639 | |
| 640 | def drawCurve(self, points, degree=None, color=None, width=2): |
| 641 | """ |
| 642 | Convenience method creating and registering a `CurvePrim`. |
| 643 | """ |
| 644 | curve = CurvePrim(points, degree, color, width) |
| 645 | self.registerPrimitive(curve) |
| 646 | return curve |
| 647 | |
| 648 | def drawTransform(self, transform=None): |
| 649 | """ |
no test coverage detected