[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4171] trunk/py/scripts/addons/ io_mesh_pdb/__init__.py:

Clemens Barth barth at root-1.de
Wed Jan 16 19:15:36 CET 2013


Revision: 4171
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4171
Author:   blendphys
Date:     2013-01-16 18:15:36 +0000 (Wed, 16 Jan 2013)
Log Message:
-----------

Quite annoying: When importing an atomic structure with sticks, the sticks
were not automatically smoothened. I changed the default value from False to
True.

Blendphys.

Modified Paths:
--------------
    trunk/py/scripts/addons/io_mesh_pdb/__init__.py

Modified: trunk/py/scripts/addons/io_mesh_pdb/__init__.py
===================================================================
--- trunk/py/scripts/addons/io_mesh_pdb/__init__.py	2013-01-16 18:14:27 UTC (rev 4170)
+++ trunk/py/scripts/addons/io_mesh_pdb/__init__.py	2013-01-16 18:15:36 UTC (rev 4171)
@@ -24,7 +24,7 @@
 #
 #  Start of project              : 2011-08-31 by Clemens Barth
 #  First publication in Blender  : 2011-11-11
-#  Last modified                 : 2012-11-09
+#  Last modified                 : 2013-01-16
 #
 #  Acknowledgements 
 #  ================
@@ -121,7 +121,7 @@
         name="Color", default=True,
         description="The sticks appear in the color of the atoms")
     use_sticks_smooth = BoolProperty(
-        name="Smooth", default=False,
+        name="Smooth", default=True,
         description="The sticks are round (sectors are not visible)")     
     use_sticks_bonds = BoolProperty(
         name="Bonds", default=False,



More information about the Bf-extensions-cvs mailing list