summaryrefslogtreecommitdiffstats
path: root/share/extensions/pathscatter.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/extensions/pathscatter.py')
-rwxr-xr-xshare/extensions/pathscatter.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/extensions/pathscatter.py b/share/extensions/pathscatter.py
index 361e8f8e1..a56ab8ac2 100755
--- a/share/extensions/pathscatter.py
+++ b/share/extensions/pathscatter.py
@@ -183,10 +183,10 @@ class PathScatter(pathmodifier.Diffeo):
def lengthtotime(self,l):
'''
- Recieves an arc length l, and returns the index of the segment in self.skelcomp
+ Receives an arc length l, and returns the index of the segment in self.skelcomp
containing the corresponding point, to gether with the position of the point on this segment.
- If the deformer is closed, do computations modulo the toal length.
+ If the deformer is closed, do computations modulo the total length.
'''
if self.skelcompIsClosed:
l=l % sum(self.lengths)
@@ -201,7 +201,7 @@ class PathScatter(pathmodifier.Diffeo):
def localTransformAt(self,s,follow=True):
'''
- receives a length, and returns the coresponding point and tangent of self.skelcomp
+ receives a length, and returns the corresponding point and tangent of self.skelcomp
if follow is set to false, returns only the translation
'''
i,t=self.lengthtotime(s)