signed distance between plane and point

Viewed 22063

I cannot find a consistent method for finding the signed distance between a point and a plane. How can I calculate this given a plane defined as a point and a normal?

struct Plane
{
    Vec3 point;
    Vec3 normal;
} 
2 Answers
Related