How to find the third point at a given distance angle from a line segment in a plane?
Suppose i have a plane and a line segment with end points is given to us.Now we need to find another point which lies at distance d from , making an angle θ in such a way that if we go from to and then to it forms counterclockwise direction.
Note :
My approach : we can use dot product and it will give us equation of for Ax+By=C where A,B,C are constants.Then we can use information given by d. After solving two equations we will get two points , one in clockwise direction and other in counterclockwise direction . We can get out desired point using cross product (it will be negative for the point we want and positive for the other point).
You see that my approach is very lengthy .Is there any shortapproach ?