Function to define a Point from a polyline (list of 1 point)
(self, pl)
| 55 | return name |
| 56 | |
| 57 | def makePoint(self, pl): |
| 58 | """Function to define a Point from |
| 59 | a polyline (list of 1 point)""" |
| 60 | |
| 61 | (x, y, z) = pl |
| 62 | return self.geompy.MakeVertex(x, y, z) |
| 63 | |
| 64 | def makeLine(self, pl): |
| 65 | """Function to define a Line from |