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'.