API docs: Fix sytax error for delaunay_2d_cd

Alternative solution to https://developer.blender.org/D8546
This commit is contained in:
2020-09-29 15:46:20 -04:00
parent c1cdde04e2
commit 7322b83cf2

View File

@@ -1553,16 +1553,16 @@ PyDoc_STRVAR(
M_Geometry_delaunay_2d_cdt_doc,
".. function:: delaunay_2d_cdt(vert_coords, edges, faces, output_type, epsilon)\n"
"\n"
"Computes the Constrained Delaunay Triangulation of a set of vertices, "
"with edges and faces that must appear in the triangulation. "
"Some triangles may be eaten away, or combined with other triangles, "
"according to output type. "
"The returned verts may be in a different order from input verts, may be moved "
"slightly, and may be merged with other nearby verts. "
"The three returned orig lists give, for each of verts, edges, and faces, the list of "
"input element indices corresponding to the positionally same output element. "
"For edges, the orig indices start with the input edges and then continue "
"with the edges implied by each of the faces (n of them for an n-gon).\n"
" Computes the Constrained Delaunay Triangulation of a set of vertices,\n"
" with edges and faces that must appear in the triangulation.\n"
" Some triangles may be eaten away, or combined with other triangles,\n"
" according to output type.\n"
" The returned verts may be in a different order from input verts, may be moved\n"
" slightly, and may be merged with other nearby verts.\n"
" The three returned orig lists give, for each of verts, edges, and faces, the list of\n"
" input element indices corresponding to the positionally same output element.\n"
" For edges, the orig indices start with the input edges and then continue\n"
" with the edges implied by each of the faces (n of them for an n-gon).\n"
"\n"
" :arg vert_coords: Vertex coordinates (2d)\n"
" :type vert_coords: list of :class:`mathutils.Vector`\n"