Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-19 18:59:58 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-19 19:12:29 +0300
commitd7d3233715503ecc15b8dd1973f7e73257e2cbda (patch)
treef9f9ab24b89fe574b3f972e45c8337bcd791a9b1 /add_curve_extra_objects
parent84b817117328b3193533324846ec389b1f5fe5c4 (diff)
Spelling fixes in comments and descriptions, patch by luzpaz.
Differential Revision: https://developer.blender.org/D3746
Diffstat (limited to 'add_curve_extra_objects')
-rw-r--r--add_curve_extra_objects/add_curve_aceous_galore.py2
-rw-r--r--add_curve_extra_objects/add_curve_celtic_links.py2
-rw-r--r--add_curve_extra_objects/add_curve_simple.py4
-rw-r--r--add_curve_extra_objects/add_curve_spirals.py2
-rw-r--r--add_curve_extra_objects/add_curve_torus_knots.py4
-rw-r--r--add_curve_extra_objects/add_surface_plane_cone.py12
6 files changed, 13 insertions, 13 deletions
diff --git a/add_curve_extra_objects/add_curve_aceous_galore.py b/add_curve_extra_objects/add_curve_aceous_galore.py
index 59e1caef..d823cbb5 100644
--- a/add_curve_extra_objects/add_curve_aceous_galore.py
+++ b/add_curve_extra_objects/add_curve_aceous_galore.py
@@ -746,7 +746,7 @@ def setBezierHandles(obj, mode='AUTOMATIC'):
bpy.ops.object.mode_set(mode='OBJECT', toggle=True)
-# get array of vertcoordinates acording to splinetype
+# get array of vertcoordinates according to splinetype
def vertsToPoints(Verts, splineType):
# main vars
diff --git a/add_curve_extra_objects/add_curve_celtic_links.py b/add_curve_extra_objects/add_curve_celtic_links.py
index 66b800bf..f4313c85 100644
--- a/add_curve_extra_objects/add_curve_celtic_links.py
+++ b/add_curve_extra_objects/add_curve_celtic_links.py
@@ -88,7 +88,7 @@ class CelticKnotOperator(Operator):
)
crossing_strength = FloatProperty(
name="Crossing Strength",
- description="Aligned only: strenth of bezier control points",
+ description="Aligned only: strength of bezier control points",
soft_min=0,
subtype="DISTANCE",
unit="LENGTH"
diff --git a/add_curve_extra_objects/add_curve_simple.py b/add_curve_extra_objects/add_curve_simple.py
index c6908ce9..d8ff9ad7 100644
--- a/add_curve_extra_objects/add_curve_simple.py
+++ b/add_curve_extra_objects/add_curve_simple.py
@@ -817,7 +817,7 @@ class Simple(Operator):
# general properties
Types = [('Point', "Point", "Construct a Point"),
('Line', "Line", "Construct a Line"),
- ('Distance', "Distance", "Contruct a two point Distance"),
+ ('Distance', "Distance", "Construct a two point Distance"),
('Angle', "Angle", "Construct an Angle"),
('Circle', "Circle", "Construct a Circle"),
('Ellipse', "Ellipse", "Construct an Ellipse"),
@@ -1526,7 +1526,7 @@ class SimpleVariables(PropertyGroup):
# general properties
Types = [('Point', "Point", "Construct a Point"),
('Line', "Line", "Construct a Line"),
- ('Distance', "Distance", "Contruct a two point Distance"),
+ ('Distance', "Distance", "Construct a two point Distance"),
('Angle', "Angle", "Construct an Angle"),
('Circle', "Circle", "Construct a Circle"),
('Ellipse', "Ellipse", "Construct an Ellipse"),
diff --git a/add_curve_extra_objects/add_curve_spirals.py b/add_curve_extra_objects/add_curve_spirals.py
index 522f6379..9abfebd8 100644
--- a/add_curve_extra_objects/add_curve_spirals.py
+++ b/add_curve_extra_objects/add_curve_spirals.py
@@ -43,7 +43,7 @@ def make_spiral(props, context):
# archemedian and logarithmic can be plotted in cylindrical coordinates
# INPUT: turns->degree->max_phi, steps, direction
- # Initialise Polar Coordinate Enviroment
+ # Initialise Polar Coordinate Environment
props.degree = 360 * props.turns # If you want to make the slider for degree
steps = props.steps * props.turns # props.steps[per turn] -> steps[for the whole spiral]
props.z_scale = props.dif_z * props.turns
diff --git a/add_curve_extra_objects/add_curve_torus_knots.py b/add_curve_extra_objects/add_curve_torus_knots.py
index 4c26fe07..4401112d 100644
--- a/add_curve_extra_objects/add_curve_torus_knots.py
+++ b/add_curve_extra_objects/add_curve_torus_knots.py
@@ -547,8 +547,8 @@ class torus_knot_plus(Operator, AddObjectHelper):
items=SplineTypes,
)
bezierHandles = [
- ('VECTOR', "Vector", "Bezier Hanles type - Vector"),
- ('AUTOMATIC', "Auto", "Bezier Hanles type - Automatic"),
+ ('VECTOR', "Vector", "Bezier Handles type - Vector"),
+ ('AUTOMATIC', "Auto", "Bezier Handles type - Automatic"),
]
handleType = EnumProperty(
name="Handle type",
diff --git a/add_curve_extra_objects/add_surface_plane_cone.py b/add_curve_extra_objects/add_surface_plane_cone.py
index dcbb5b52..ad5e1eb9 100644
--- a/add_curve_extra_objects/add_surface_plane_cone.py
+++ b/add_curve_extra_objects/add_surface_plane_cone.py
@@ -81,7 +81,7 @@ class MakeSurfaceWedge(Operator, MakeSurfaceHelpers):
# add a surface Plane
bpy.ops.object.add_surface_plane()
- # save some time, by getting instant acces to those values
+ # save some time, by getting instant access to those values
ao = context.active_object
point = ao.data.splines[0].points
@@ -95,7 +95,7 @@ class MakeSurfaceWedge(Operator, MakeSurfaceHelpers):
bpy.ops.curve.select_all(action='DESELECT')
# select points 0 and 1, and extrudde them
- # declaring ao and point again seems necesary...
+ # declaring ao and point again seems necessary...
ao = context.active_object
point = ao.data.splines[0].points
point[0].select = True
@@ -154,7 +154,7 @@ class MakeSurfaceCone(Operator, MakeSurfaceHelpers):
bpy.ops.object.mode_set(mode='EDIT')
# deselect all
bpy.ops.curve.select_all(action='DESELECT')
- # too shorten alot of lines
+ # too shorten a lot of lines
point = ao.data.splines[0].points
# get middle points
@@ -165,7 +165,7 @@ class MakeSurfaceCone(Operator, MakeSurfaceHelpers):
# select non-middle points and delete them
bpy.ops.curve.select_all(action='INVERT')
bpy.ops.curve.delete(type='VERT')
- # declaring this again seems necesary...
+ # declaring this again seems necessary...
point = ao.data.splines[0].points
# list of points to be in center, and 2 bu'' s higher
@@ -200,7 +200,7 @@ class MakeSurfaceCone(Operator, MakeSurfaceHelpers):
class MakeSurfaceStar(Operator, MakeSurfaceHelpers):
bl_idname = "object.add_surface_star"
bl_label = "Add Surface Star"
- bl_description = "Contruct a Surface Star"
+ bl_description = "Construct a Surface Star"
bl_options = {'REGISTER', 'UNDO'}
def execute(self, context):
@@ -282,7 +282,7 @@ class MakeSurfaceStar(Operator, MakeSurfaceHelpers):
class MakeSurfacePlane(Operator, MakeSurfaceHelpers):
bl_idname = "object.add_surface_plane"
bl_label = "Add Surface Plane"
- bl_description = "Contruct a Surface Plane"
+ bl_description = "Construct a Surface Plane"
bl_options = {'REGISTER', 'UNDO'}
def execute(self, context):