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:
authorKen Hughes <khughes@pacific.edu>2006-11-14 19:36:45 +0300
committerKen Hughes <khughes@pacific.edu>2006-11-14 19:36:45 +0300
commitba71fbb785c0aa99bb111ed702a5734fa2358f91 (patch)
tree60e69667e3d410002d9cc2a3d488c91193fb6ed0
parentb39938dc75af70a54e31a181bb2b9150ad819834 (diff)
Python API:
Bugfix #5172: removed nmesh.addEdgesData() from documentation (the method was removed in Blender 2.40 release)
-rw-r--r--source/blender/python/api2_2x/doc/NMesh.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/source/blender/python/api2_2x/doc/NMesh.py b/source/blender/python/api2_2x/doc/NMesh.py
index a11d8fabeba..6482bf852c3 100644
--- a/source/blender/python/api2_2x/doc/NMesh.py
+++ b/source/blender/python/api2_2x/doc/NMesh.py
@@ -4,8 +4,7 @@
The Blender.NMesh submodule.
B{New}:
- - edges class (L{NMEdge}) and nmesh methods (L{NMesh.NMesh.addEdge},
-L{NMesh.NMesh.addEdgesData}, etc.);
+ - edges class (L{NMEdge}) and nmesh methods (L{NMesh.NMesh.addEdge}, etc.);
- new optional arguments to L{NMesh.NMesh.update};
- L{NMesh.NMesh.transform};
- L{GetNames};
@@ -351,7 +350,7 @@ class NMesh:
@ivar verts: The list of NMesh vertices (NMVerts).
@ivar users: The number of Objects using (linked to) this mesh.
@ivar faces: The list of NMesh faces (NMFaces).
- @ivar edges: None if mesh has no edge data, else a list of L{NMEdge} edges. Use L{addEdgesData} to create edge data if it do not exist.
+ @ivar edges: A list of L{NMEdge} edges.
@ivar mode: The mode flags for this mesh. See L{setMode}.
@ivar subDivLevels: The [display, rendering] subdivision levels in [1, 6].
@ivar maxSmoothAngle: The max angle for auto smoothing. See L{setMode}.
@@ -413,11 +412,6 @@ class NMesh:
@param face: the face to add to the mesh.
"""
- def addEdgesData():
- """
- If edge data does not exist for the mesh (ie L{edges}==None), then create them.
- """
-
def addMaterial(material):
"""
Add a new material to this NMesh's list of materials. This method is the