PL=crossT(TE)
TE : | is the HT matrix that describes a plane by an ez-Vector and a position p |
PL : | is a list of 3 points PL=[px py pz] describing the crossing points of ex, ey, and ez vectors with the x/y plane (z=0). |
Test different plane decriptions (t=O, ez=ez)
T1=eye(4); T2=T1; T2(1:3,4)=[1 7 40]; crossT(T2);
T1=eye(4); T2=T1; T2(1:3,1:3)=rotdeg(90,0,0); crossT(T2)