[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [2468] branches/geodesic_domes/vefm_259 .py: debug prints removed

Peter K.H. Gragert pkhgragert at gmail.com
Mon Oct 17 09:01:15 CEST 2011


Revision: 2468
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=2468
Author:   pkhg
Date:     2011-10-17 07:01:15 +0000 (Mon, 17 Oct 2011)
Log Message:
-----------
debug prints removed 
(some spaces added)

Modified Paths:
--------------
    branches/geodesic_domes/vefm_259.py

Modified: branches/geodesic_domes/vefm_259.py
===================================================================
--- branches/geodesic_domes/vefm_259.py	2011-10-17 06:59:42 UTC (rev 2467)
+++ branches/geodesic_domes/vefm_259.py	2011-10-17 07:01:15 UTC (rev 2468)
@@ -557,15 +557,13 @@
         self.faceedgeflag=1
  
     def boundary(self):
-        print("dbg 434 boundaray called")
         if not self.boundaryflag:
             for edge in self.edges:
-                print("dbg 437 len(edge.faces)",len(edge.faces))
-                if len(edge.faces)<2:
-                    edge.boundary=1
-                    edge.faces[0].boundary=1
-                    edge.a.boundary=1
-                    edge.b.boundary=1
+                if len(edge.faces) < 2:
+                    edge.boundary = 1
+                    edge.faces[0].boundary = 1
+                    edge.a.boundary = 1
+                    edge.b.boundary = 1
                     
 ##   The functions below turn the basic triangular faces into
 ##   hexagonal faces, creating the buckyball effect.



More information about the Bf-extensions-cvs mailing list