From 47cbc42de0ea2aeff29187f897a9d84eacc0aa04 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Sun, 24 Dec 2017 19:44:11 -0500 Subject: [PATCH] Path: typos --- src/Mod/Path/PathScripts/PathGeom.py | 2 +- src/Mod/Path/PathScripts/PathPreferences.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Path/PathScripts/PathGeom.py b/src/Mod/Path/PathScripts/PathGeom.py index c2b8b3629e..c360ee07eb 100644 --- a/src/Mod/Path/PathScripts/PathGeom.py +++ b/src/Mod/Path/PathScripts/PathGeom.py @@ -61,7 +61,7 @@ class Side: """(ptRef, pt) Determine the side of pt in relation to ptRef. If both Points are viewed as vectors with their origin in (0,0,0) - then the two vectors are either form a straigt line (On) or pt + then the two vectors either form a straight line (On) or pt lies in the left or right hemishpere in regards to ptRef.""" d = -ptRef.x*pt.y + ptRef.y*pt.x if d < 0: diff --git a/src/Mod/Path/PathScripts/PathPreferences.py b/src/Mod/Path/PathScripts/PathPreferences.py index 43248ea7ce..4e4d9c28b1 100644 --- a/src/Mod/Path/PathScripts/PathPreferences.py +++ b/src/Mod/Path/PathScripts/PathPreferences.py @@ -41,7 +41,7 @@ class PathPreferences: PostProcessorOutputFile = "PostProcessorOutputFile" PostProcessorOutputPolicy = "PostProcessorOutputPolicy" - # Linear tolerance to use when generating Paths, eg when tesselating geometry + # Linear tolerance to use when generating Paths, eg when tessellating geometry GeometryTolerance = "GeometryTolerance" LibAreaCurveAccuracy = "LibAreaCurveAccuarcy"