AForge.Math.Geometry.Line.FromPointTheta C# (CSharp) Method

FromPointTheta() public static method

Constructs a Line from a point and an angle (in degrees).

theta is the counterclockwise rotation from the positive X axis to the vector through the origin and normal to the line.

This means that if theta is in [0,180), the point on the line closest to the origin is on the positive X or Y axes, or in quadrants I or II. Likewise, if theta is in [180,360), the point on the line closest to the origin is on the negative X or Y axes, or in quadrants III or IV.

public static FromPointTheta ( Point point, float theta ) : Line
point Point The minimum distance from the line to the origin.
theta float The angle of the normal vector from the origin to the line.
return Line
		public static Line FromPointTheta( Point point, float theta )
		{
			return new Line( point, theta );
		}