Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-09-29 22:46:20 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-09-29 22:50:49 +0300
commit7322b83cf2df80772ec5b0232457463f6281ad1a (patch)
tree604d2a17cefedadb502e6b0bc1b22676abfaaa0d /source/blender/python/mathutils
parentc1cdde04e270598d4a3973d85ac98d30cc86937e (diff)
API docs: Fix sytax error for delaunay_2d_cd
Alternative solution to https://developer.blender.org/D8546
Diffstat (limited to 'source/blender/python/mathutils')
-rw-r--r--source/blender/python/mathutils/mathutils_geometry.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/python/mathutils/mathutils_geometry.c b/source/blender/python/mathutils/mathutils_geometry.c
index 1a161924f96..ad5f1a486b4 100644
--- a/source/blender/python/mathutils/mathutils_geometry.c
+++ b/source/blender/python/mathutils/mathutils_geometry.c
@@ -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"