From f47df84705e90d3fe44ff82f963efe091041f5eb Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 22 Feb 2015 18:14:45 +0100 Subject: [PATCH] + change doc string of Vector.projectPointToLine --- src/Base/VectorPy.xml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Base/VectorPy.xml b/src/Base/VectorPy.xml index 2549c5bfb8..34f37b0654 100644 --- a/src/Base/VectorPy.xml +++ b/src/Base/VectorPy.xml @@ -83,8 +83,11 @@ - projectToLine(Vector,Vector) - projects the vector on a line defined by a base point and a direction + projectToLine(Vector pnt,Vector vec) + Projects the point 'pnt' on a line that goes through the origin with the direction vector 'vec'. + The result is the vector from point 'pnt' to the projected point. + NOTE: The result does not depend on the vector instance 'self'. + NOTE: This method modifies the vector instance 'self'.