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

FromRTheta() public static method

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

radius is the minimum distance from the origin to the line, and 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.

Thrown if radius is negative.
public static FromRTheta ( float radius, float theta ) : Line
radius float The minimum distance from the line to the origin.
theta float The angle of the vector from the origin to the line.
return Line
		public static Line FromRTheta( float radius, float theta )
		{
			return new Line( radius, theta, false );
		}