From 8996541db4b45d71737bd8c29eaa9f0f69d25f14 Mon Sep 17 00:00:00 2001 From: Bastien Montagne <montagne29@wanadoo.fr> Date: Wed, 16 May 2012 14:25:58 +0000 Subject: [PATCH] Spell check fix (lenght -> length) --- add_mesh_chain_rope/oscurart_rope_maker.py | 2 +- geodesic_domes/vefm_259.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/add_mesh_chain_rope/oscurart_rope_maker.py b/add_mesh_chain_rope/oscurart_rope_maker.py index 5faad597..d7e4334e 100644 --- a/add_mesh_chain_rope/oscurart_rope_maker.py +++ b/add_mesh_chain_rope/oscurart_rope_maker.py @@ -165,7 +165,7 @@ class OBJECT_OT_add_object(bpy.types.Operator): strands = IntProperty (name="Strands", default=5 , min=1, max=1000, step=1) diameter = FloatProperty (name="Diameter", default=1 , min=0, max=1000) distPos= FloatProperty (name="Stretch", default=1 , min=0.01, max=100.0) - vertices= IntProperty (name="Lenght", default=10 , min=0, max=1000, step=1) + vertices= IntProperty (name="Length", default=10 , min=0, max=1000, step=1) distResU= IntProperty (name="Resolution V", default=5 , min=1, max=1000, step=1) stResU= IntProperty (name="Resolution U", default=5 , min=1, max=1000, step=1) radio= FloatProperty (name="Radius", default=1 , min=0, max=1000) diff --git a/geodesic_domes/vefm_259.py b/geodesic_domes/vefm_259.py index ab790707..10d27912 100644 --- a/geodesic_domes/vefm_259.py +++ b/geodesic_domes/vefm_259.py @@ -85,7 +85,7 @@ class vertex: self.normal = average(target).centroid() self.normal.findlength() if self.length == 0: - print("******ERROR*** lenght zero in findnormal, j = (0,1,0) replcaced") + print("******ERROR*** length zero in findnormal, j = (0,1,0) replcaced") self.normal = vertex((0,1,0)) self.normal.normalize() -- GitLab