Given a cartesian equation of a plane , how can find the equation of a rotated plane [closed]

StackOverflow https://stackoverflow.com/questions/18272915

  •  24-06-2022
  •  | 
  •  

문제

I want to rotate a plane represented by the equation z = 6 , by n degrees along y axis and find the new equation of the plane. how can this be done?

Thanks

도움이 되었습니까?

해결책

Base point (0,0,6) after rotation will lie in XZ plane with coordinates

(x0, y0, z0) = (-6*sin(Fi), 0, 6*cos(Fi))

normal vector

n = (A,B,C) = (-sin(Fi), 0, cos(Fi))

so new plane equation is (for explanation see beginning of the article)

A*(x-x0)+B*(y-y0)+C*(z-z0)=0
or
-sin(Fi)*x + cos(Fi)*z - 6 = 0
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top