Serial port and GPS

StraightLine Constructor 

Initializes a straight line going through p1 and p2

[Visual Basic]
Public Sub New( _
   ByVal x1 As Double, _
   ByVal y1 As Double, _
   ByVal x2 As Double, _
   ByVal y2 As Double _
)
[C#]
public StraightLine(
   double x1,
   double y1,
   double x2,
   double y2
);

Parameters

x1
x of the first point of the straight line
y1
y of the first point of the straight line
x2
x of the second point of the straight line
y2
y of the second point of the straight line

See Also

StraightLine Class | serial Namespace