python: apply const method annotations to impls.

This commit is contained in:
Jacob Oursland
2025-04-16 20:29:19 -07:00
parent 7046f908f4
commit 5c251e73ac
69 changed files with 508 additions and 515 deletions

View File

@@ -147,7 +147,7 @@ Py::Object VoronoiVertexPy::getIncidentEdge() const
return Py::asObject(new VoronoiEdgePy(new VoronoiEdge(v->dia, v->ptr->incident_edge())));
}
PyObject* VoronoiVertexPy::toPoint(PyObject* args)
PyObject* VoronoiVertexPy::toPoint(PyObject* args) const
{
double z = 0.0;
if (!PyArg_ParseTuple(args, "|d", &z)) {