Construct a vertex from coordinates.
(x: Real, y: Real, z: Real)
| 6235 | |
| 6236 | @multimethod |
| 6237 | def vertex(x: Real, y: Real, z: Real) -> Vertex: |
| 6238 | """ |
| 6239 | Construct a vertex from coordinates. |
| 6240 | """ |
| 6241 | |
| 6242 | return _shape(BRepBuilderAPI_MakeVertex(gp_Pnt(x, y, z)).Vertex(), Vertex) |
| 6243 | |
| 6244 | |
| 6245 | @multimethod |