Knowing the position of 3 points($A, B, C$) , how can I get the distance from $A$ to the line $\overline {BC}$ if I know the angle?
Asked
Active
Viewed 107 times
1
-
This Wolfram reference was linked in an almost identical question. – fuglede Jun 17 '13 at 21:38
2 Answers
1
If you have the positions as vectors, compute $\frac{|(A-B)\times (C-B)|}{|C-B|}$.
Hagen von Eitzen
- 374,180
0
If the equation of line $BC$ is $$ax+by+c=0$$ and $$A=(x_0,y_0)$$ then $$d(BC,A)=\frac{|ax_0+by_0+c|}{\sqrt{a^2+b^2}}$$
Adi Dani
- 16,949