I have a polygon defined by n
points and a polygon normal
.
- Now I want to get the plane of the polygon defined by
- a plane
normal=(nx,ny,nz)
- and a constant
d
(distance from the origin to the plane).
- a plane
- The plane normal is equal to the polygon normal, but how can I calculate d?
- desired plane equation
nx*x+ny*y+nz*z+d=0.0