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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-02-13 04:13:16 +0300
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-02-13 04:13:16 +0300
commit135a944c66c57f11fd77b4f7231686353112e7ac (patch)
tree3928c457f44f544113e84b3356ab101e3820072e /release/scripts/op/add_mesh_torus.py
parent1b3948f9aad25fec1923f5ccd36ea525d8e34fb6 (diff)
parent33b1cbf06d2c822c68676390b1775eb5d78de6e6 (diff)
Merged changes in the trunk up to revision 26856.
Diffstat (limited to 'release/scripts/op/add_mesh_torus.py')
-rw-r--r--release/scripts/op/add_mesh_torus.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/release/scripts/op/add_mesh_torus.py b/release/scripts/op/add_mesh_torus.py
index 59e40fbd628..66b4e9ddf13 100644
--- a/release/scripts/op/add_mesh_torus.py
+++ b/release/scripts/op/add_mesh_torus.py
@@ -12,7 +12,7 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
@@ -75,7 +75,7 @@ from bpy.props import *
class AddTorus(bpy.types.Operator):
- '''Add a torus mesh.'''
+ '''Add a torus mesh'''
bl_idname = "mesh.primitive_torus_add"
bl_label = "Add Torus"
bl_register = True
@@ -92,7 +92,7 @@ class AddTorus(bpy.types.Operator):
default=48, min=3, max=256)
minor_segments = IntProperty(name="Minor Segments",
description="Number of segments for the minor ring of the torus",
- default=16, min=3, max=256)
+ default=12, min=3, max=256)
use_abso = BoolProperty(name="Use Int+Ext Controls",
description="Use the Int / Ext controls for torus dimensions",
default=False)
@@ -121,6 +121,7 @@ class AddTorus(bpy.types.Operator):
mesh.add_geometry(int(len(verts_loc) / 3), 0, int(len(faces) / 4))
mesh.verts.foreach_set("co", verts_loc)
mesh.faces.foreach_set("verts_raw", faces)
+ mesh.faces.foreach_set("smooth", [False] * len(mesh.faces))
scene = context.scene