Plane3D

Description

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

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