Line2D

Description

Components of Line2D are corresponding coefficients of straight line equation in general form \(Ax + By + C = 0\.)

struct Line2D
{
	real a;
	real b;
	real c;
};