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>2016-06-09 18:52:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-06-09 18:52:31 +0300
commitaf2d39d902c0e302a32b979a8d47ff8e067c0d65 (patch)
tree42b431055c3da68dce0496fb501e965d8f91603b
parent5c4ea862b179332cad4cb9631542bd6b6accf9c3 (diff)
Minor docstring formatting edit
-rw-r--r--source/blender/python/bmesh/bmesh_py_types_customdata.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_types_customdata.c b/source/blender/python/bmesh/bmesh_py_types_customdata.c
index c4a3e2925e0..21a70c93e0a 100644
--- a/source/blender/python/bmesh/bmesh_py_types_customdata.c
+++ b/source/blender/python/bmesh/bmesh_py_types_customdata.c
@@ -320,12 +320,13 @@ static PyObject *bpy_bmlayeritem_copy_from(BPy_BMLayerItem *self, BPy_BMLayerIte
#define bpy_bmlayeritem_from_array__clnors_doc \
" clnor layer: Array may be either:\n" \
-" - A sequence of num_loop tuples (float, float):\n" \
-" Raw storage of custom normals, as (alpha, beta) factors in [-1.0, 1.0] range.\n" \
-" - A sequence of num_loop vectors (float, float, float):\n" \
-" Custom normals per loop, as (x, y, z) components (normalization is ensured internaly).\n" \
-" - A sequence of num_vert vectors (float, float, float):\n" \
-" Custom normals per vertex, as (x, y, z) components (normalization is ensured internaly).\n" \
+" - A sequence of num_loop tuples (float, float):\n" \
+" Raw storage of custom normals, as (alpha, beta) factors in [-1.0, 1.0] range.\n" \
+" - A sequence of num_loop vectors (float, float, float):\n" \
+" Custom normals per loop, as (x, y, z) components (normalization is ensured internaly).\n" \
+" - A sequence of num_vert vectors (float, float, float):\n" \
+" Custom normals per vertex, as (x, y, z) components (normalization is ensured internaly).\n" \
+"\n" \
" In all cases, items which are None or null vectors will use default auto-computed normal.\n" \
"\n" \
" Returns an array of the same type as given one, with None/null-vector values replaced by actual ones.\n"