@@ -23,7 +23,7 @@ static PyObject* PyTriangulation_new(PyTypeObject* type, PyObject* args, PyObjec
23
23
24
24
const char * PyTriangulation_init__doc__ =
25
25
" Triangulation(x, y, triangles, mask, edges, neighbors)\n "
26
- " \n "
26
+ " -- \n \n"
27
27
" Create a new C++ Triangulation object\n "
28
28
" This should not be called directly, instead use the python class\n "
29
29
" matplotlib.tri.Triangulation instead.\n " ;
@@ -100,7 +100,7 @@ static void PyTriangulation_dealloc(PyTriangulation* self)
100
100
101
101
const char * PyTriangulation_calculate_plane_coefficients__doc__ =
102
102
" calculate_plane_coefficients(z, plane_coefficients)\n "
103
- " \n "
103
+ " -- \n \n"
104
104
" Calculate plane equation coefficients for all unmasked triangles" ;
105
105
106
106
static PyObject* PyTriangulation_calculate_plane_coefficients (PyTriangulation* self, PyObject* args, PyObject* kwds)
@@ -125,7 +125,7 @@ static PyObject* PyTriangulation_calculate_plane_coefficients(PyTriangulation* s
125
125
126
126
const char * PyTriangulation_get_edges__doc__ =
127
127
" get_edges()\n "
128
- " \n "
128
+ " -- \n \n"
129
129
" Return edges array" ;
130
130
131
131
static PyObject* PyTriangulation_get_edges (PyTriangulation* self, PyObject* args, PyObject* kwds)
@@ -142,7 +142,7 @@ static PyObject* PyTriangulation_get_edges(PyTriangulation* self, PyObject* args
142
142
143
143
const char * PyTriangulation_get_neighbors__doc__ =
144
144
" get_neighbors()\n "
145
- " \n "
145
+ " -- \n \n"
146
146
" Return neighbors array" ;
147
147
148
148
static PyObject* PyTriangulation_get_neighbors (PyTriangulation* self, PyObject* args, PyObject* kwds)
@@ -159,7 +159,7 @@ static PyObject* PyTriangulation_get_neighbors(PyTriangulation* self, PyObject*
159
159
160
160
const char * PyTriangulation_set_mask__doc__ =
161
161
" set_mask(mask)\n "
162
- " \n "
162
+ " -- \n \n"
163
163
" Set or clear the mask array." ;
164
164
165
165
static PyObject* PyTriangulation_set_mask (PyTriangulation* self, PyObject* args, PyObject* kwds)
@@ -234,7 +234,7 @@ static PyObject* PyTriContourGenerator_new(PyTypeObject* type, PyObject* args, P
234
234
235
235
const char * PyTriContourGenerator_init__doc__ =
236
236
" TriContourGenerator(triangulation, z)\n "
237
- " \n "
237
+ " -- \n \n"
238
238
" Create a new C++ TriContourGenerator object\n "
239
239
" This should not be called directly, instead use the functions\n "
240
240
" matplotlib.axes.tricontour and tricontourf instead.\n " ;
@@ -369,7 +369,7 @@ static PyObject* PyTrapezoidMapTriFinder_new(PyTypeObject* type, PyObject* args,
369
369
370
370
const char * PyTrapezoidMapTriFinder_init__doc__ =
371
371
" TrapezoidMapTriFinder(triangulation)\n "
372
- " \n "
372
+ " -- \n \n"
373
373
" Create a new C++ TrapezoidMapTriFinder object\n "
374
374
" This should not be called directly, instead use the python class\n "
375
375
" matplotlib.tri.TrapezoidMapTriFinder instead.\n " ;
0 commit comments