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:
authorCampbell Barton <ideasman42@gmail.com>2012-11-28 05:14:11 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-28 05:14:11 +0400
commit4fe35721e647126c6f929725d20064d279783ac3 (patch)
treec070873ad27562f45d47e965826e40d1f09582c9 /release
parentc5a8bd498d59abec7d3fdc4123d8b5f0d121396d (diff)
bmesh operator api reference - add in 'bmesh' arg at the start of each operator, also use :class: references.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/bpy_extras/mesh_utils.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/release/scripts/modules/bpy_extras/mesh_utils.py b/release/scripts/modules/bpy_extras/mesh_utils.py
index 2042cc1c8a1..0166f954dc9 100644
--- a/release/scripts/modules/bpy_extras/mesh_utils.py
+++ b/release/scripts/modules/bpy_extras/mesh_utils.py
@@ -325,10 +325,12 @@ def ngon_tessellate(from_data, indices, fix_loops=True):
fgon to create from existing verts.
from_data: either a mesh, or a list/tuple of vectors.
- indices: a list of indices to use this list is the ordered closed polyline
+ :arg indices: a list of indices to use this list is the ordered closed polyline
to fill, and can be a subset of the data given.
- fix_loops: If this is enabled polylines that use loops to make multiple
+ :type indices: list
+ :arg fix_loops: If this is enabled polylines that use loops to make multiple
polylines are delt with correctly.
+ :type fix_loops: bool
"""
from mathutils.geometry import tessellate_polygon