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:
Diffstat (limited to 'intern/python/modules/Blender/Mesh.py')
-rw-r--r--intern/python/modules/Blender/Mesh.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/python/modules/Blender/Mesh.py b/intern/python/modules/Blender/Mesh.py
index fb2e496b254..dd8103919f8 100644
--- a/intern/python/modules/Blender/Mesh.py
+++ b/intern/python/modules/Blender/Mesh.py
@@ -51,7 +51,7 @@
from Blender.Types import NMFaceType
import Blender.Material as Material
-#from _Blender import NMesh as _NMesh
+from _Blender import NMesh as _NMesh
FACEFLAGS = _NMesh.Const
DEFAULTFLAGS = FACEFLAGS.LIGHT + FACEFLAGS.DYNAMIC
@@ -66,7 +66,7 @@ def makeFace(f):
return face
def toTriangles(ngon):
- #from utils import tesselation
+ from utils import tesselation
# This should be a Publisher only feature...once the tesselation
# is improved. The GLU tesselator of Mesa < 4.0 is crappy...
if len(ngon.uv) == len(ngon.v):