Skip to content
Snippets Groups Projects
Commit 8996541d authored by Bastien Montagne's avatar Bastien Montagne
Browse files

Spell check fix (lenght -> length)

parent 35c2ad91
Branches
No related tags found
No related merge requests found
......@@ -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)
......
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment