The problem is as follows: I have a plane defined by three points. I also have a fourth point. I now want to calculate the normalvector of the plane defined by the first three points, but i want the Normalvector to point towards the side of the plane, where the fourth point is.
My idea is to just calculate any normalvector of the plane, then drop a perpenicular from point four to the plane, and then check if the two vectors are parralell or antiparralell. Is the there a better solution without the extra step of droping the perpendicular?
One way of doing this is to ensure that the dot product of your normal and any vector joining a point in the plane to the fourth point is positive.