(cls, x: float, y: float, z: float)
| 2029 | |
| 2030 | @classmethod |
| 2031 | def makeVertex(cls, x: float, y: float, z: float) -> Vertex: |
| 2032 | |
| 2033 | return cls(BRepBuilderAPI_MakeVertex(gp_Pnt(x, y, z)).Vertex()) |
| 2034 | |
| 2035 | |
| 2036 | ParamMode = Literal["length", "parameter"] |
no outgoing calls