Draw a parallel line thst pass a specific point
조회 수: 6 (최근 30일)
이전 댓글 표시
Hi,
I have a line between with starting point of [X1,Y1] and ending point [X2,Y2] and I would like to draw a parallel line with the same length and angle(to the x axis) that pass through 3rd point [X3,Y3]. How can I do it?
Thanks.
댓글 수: 0
답변 (2개)
Image Analyst
2013년 10월 27일
Sounds a lot like homework so I'll just get you started. It's really just 10th grade math. The slope of the first, reference line is
slope = (y2-y1)/(x2-x1)
So the second line has the same slope but you just use the point-slope formula of a line:
y - y3 = slope * (x - x3)
or
y = slope * (x - x3) + y3
Now, there is an infinite number of endpoints pairs for that second line that will satisfy the requirement that it is parallel and has the same length. To go any further will require another constraint/requirement, such as the angle from the original endpoint to the new endpoint to the new line is 90 degrees, or something like that. Otherwise, like I said, it could be anywhere.
댓글 수: 0
deepika
2014년 4월 18일
i want to draw a line parallel to another line such that i can determine the max point on curve where it cuts the curve . how to do that ?
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Curve Fitting Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!