Return a NURBS representation of a given shape.
(self: T,)
| 1664 | return self.__class__(result) |
| 1665 | |
| 1666 | def toNURBS(self: T,) -> T: |
| 1667 | """ |
| 1668 | Return a NURBS representation of a given shape. |
| 1669 | """ |
| 1670 | |
| 1671 | bldr = BRepBuilderAPI_NurbsConvert(self.wrapped, Copy=True) |
| 1672 | |
| 1673 | return self.__class__(bldr.Shape()) |
| 1674 | |
| 1675 | def toVtkPolyData( |
| 1676 | self, |
no outgoing calls