Line2D

Description

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

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