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 /archimesh
parent84b817117328b3193533324846ec389b1f5fe5c4 (diff)
Spelling fixes in comments and descriptions, patch by luzpaz.
Differential Revision: https://developer.blender.org/D3746
Diffstat (limited to 'archimesh')
-rw-r--r--archimesh/achm_curtain_maker.py2
-rw-r--r--archimesh/achm_main_panel.py2
-rw-r--r--archimesh/achm_room_maker.py2
-rw-r--r--archimesh/achm_window_panel.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/archimesh/achm_curtain_maker.py b/archimesh/achm_curtain_maker.py
index c02d8214..cc63c3af 100644
--- a/archimesh/achm_curtain_maker.py
+++ b/archimesh/achm_curtain_maker.py
@@ -1100,7 +1100,7 @@ def roller_side():
# --------------------------------------------------------------------
# Set curve cycle
#
-# myObject: Curve obejct
+# myObject: Curve object
# --------------------------------------------------------------------
def set_curve_cycle(myobject):
bpy.context.scene.objects.active = myobject
diff --git a/archimesh/achm_main_panel.py b/archimesh/achm_main_panel.py
index d12c2a6b..70312ac3 100644
--- a/archimesh/achm_main_panel.py
+++ b/archimesh/achm_main_panel.py
@@ -517,7 +517,7 @@ class ArchimeshMainPanel(Panel):
class AchmRunHintDisplayButton(Operator):
bl_idname = "archimesh.runopenglbutton"
bl_label = "Display hint data manager"
- bl_description = "Display aditional information in the viewport"
+ bl_description = "Display additional information in the viewport"
bl_category = 'Archimesh'
_handle = None # keep function handler
diff --git a/archimesh/achm_room_maker.py b/archimesh/achm_room_maker.py
index af9faa94..71243ca2 100644
--- a/archimesh/achm_room_maker.py
+++ b/archimesh/achm_room_maker.py
@@ -1159,7 +1159,7 @@ def add_shell(selobject, objname, rp):
# Project point using face normals
#
# m: Magnitud
-# pf: Comparision face +/-
+# pf: Comparison face +/-
# ---------------------------------------------------------
def project_point(idx, point, normals, m, pf):
v1 = Vector(normals[idx])
diff --git a/archimesh/achm_window_panel.py b/archimesh/achm_window_panel.py
index 592e13a6..dbeed892 100644
--- a/archimesh/achm_window_panel.py
+++ b/archimesh/achm_window_panel.py
@@ -1392,7 +1392,7 @@ def get_angle(p1, p2):
# Point b: (x,z)
# Point c: (x,z)
# Return:
-# x, y: center poistion
+# x, y: center position
# r: radio
# ang: angle
# ---------------------------------------------------------