I have three points
P0=[x0,y0,z0]
P1=[x1,y1,z1]
P2=[x2,y2,z2]
and I want to calculate the normal out of them. What I did is:
normal = cross(P0-P1, P0-P2);
and then I wanted to plot the normal so what I did is,
c = normal + P0 %end position of normal vector
quiver3(P0(1), P0(2), P0(3), c(1), c(2), c(3));
but it didn't work (It looks like there is an angle between the line and the plane. So it is not the normal).
Any suggestions please?