File tree Expand file tree Collapse file tree 1 file changed +19
-2
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +19
-2
lines changed
Original file line number Diff line number Diff line change @@ -301,8 +301,25 @@ version(PyObject *self, PyObject *arg)
301
301
}
302
302
303
303
static PyMethodDef qhull_methods[] = {
304
- {" delaunay" , delaunay, METH_VARARGS, " " },
305
- {" version" , version, METH_NOARGS, " " },
304
+ {" delaunay" , delaunay, METH_VARARGS,
305
+ " delaunay(x, y, /)\n "
306
+ " --\n\n "
307
+ " Compute a Delaunay triangulation.\n "
308
+ " \n "
309
+ " Parameters\n "
310
+ " ----------\n "
311
+ " x, y : 1d arrays\n "
312
+ " The coordinates of the point set, which must consist of at least \n "
313
+ " three unique points.\n "
314
+ " \n "
315
+ " Returns\n "
316
+ " -------\n "
317
+ " triangles, neighbors : int arrays, shape (ntri, 3)\n "
318
+ " Indices of triangle vertices and indices of triangle neighbors.\n "
319
+ },
320
+ {" version" , version, METH_NOARGS,
321
+ " version()\n --\n\n "
322
+ " Return the qhull version string." },
306
323
{NULL , NULL , 0 , NULL }
307
324
};
308
325
You can’t perform that action at this time.
0 commit comments