I have two planes(Plane 1 and Plane 2) the normals ($n_1$ and $n_2$) of which are known to me. How do I determine if a point is inside the two planes?
By inside I mean the 3d space between Planes 1 and 2. In the image below: P2 is inside, while P1 is outside.
Note: Planes need not be parallel.

Hope its clear.
Thanks in advance!!!!
Cheers

If you have a plane, you have its equation, meaning that the plane $1$ is defined by the equation $$ax+by+cz=d$$ for some real values $a,b,c,d$. Now, for a point $(x_0,y_0,z_0)$, it is a part of the plane if $$ax_0+by_0+cz_0=d.$$
Sam for the second plane.