I have a start point(X1,Y1) and end point(X2,Y2) I am drawing a line segment in WPF between these points , I want to calculate the value of X between this line segment if we know the Y value?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If (x,y) is on the segment, and you know y, and y1 != y2, then
If y1 == y2, then any x between x1 and x2 is possible, so you can’t really get one solution.