Angle between a Plane and a Line
Calculates the angle between a Plane and a Line. The Plane equation is A.x + B.y + C.z + D = 0 and the coordinates of the Line vector are (u v w).
`sin(theta)=(A*u+B*v+C*w)/(sqrt(A^2+B^2+C^2)*sqrt(u^2+v^2+w^2))`
Calculates the angle between a Plane and a Line. The Plane equation is A.x + B.y + C.z + D = 0 and the coordinates of the Line vector are (u v w).
`sin(theta)=(A*u+B*v+C*w)/(sqrt(A^2+B^2+C^2)*sqrt(u^2+v^2+w^2))`