Calculates the rotation of the line.
'Declaration
Public Shared Function CalculateAngle( _
ByVal As Point, _
ByVal As Point _
) As Double
'Usage
Dim firstPoint As Point
Dim secondPoint As Point
Dim value As Double
value = GeometryHelper.CalculateAngle(firstPoint, secondPoint)
Parameters
- firstPoint
- The first point of the line.
- secondPoint
- The second point of the line.