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