Function to define a Point from a polyline (list of 1 point)
(self, pl)
| 50 | return name |
| 51 | |
| 52 | def makePoint(self, pl): |
| 53 | """Function to define a Point from |
| 54 | a polyline (list of 1 point)""" |
| 55 | |
| 56 | x, y, z = pl |
| 57 | return self.geompy.MakeVertex(x, y, z) |
| 58 | |
| 59 | def makeLine(self, pl): |
| 60 | """Function to define a Line from |