The center of a vertex is itself!
(self)
| 2022 | return (geom_point.X(), geom_point.Y(), geom_point.Z()) |
| 2023 | |
| 2024 | def Center(self) -> Vector: |
| 2025 | """ |
| 2026 | The center of a vertex is itself! |
| 2027 | """ |
| 2028 | return Vector(self.toTuple()) |
| 2029 | |
| 2030 | @classmethod |
| 2031 | def makeVertex(cls, x: float, y: float, z: float) -> Vertex: |