Plane3D

Description

Components of Plane3D are corresponding coefficients of plane equation in general form \(Ax + By + Cz + D = 0\.)

struct Plane3D
{
	real a;
	real b;
	real c;
	real d;
};