You are here: Start » AVL.NET » Invoke.AngleBetweenThreePoints
Measures the angle defined by three consecutive points.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void AngleBetweenThreePoints ( Avl.Point2D inPoint1, Avl.Point2D inPoint2, Avl.Point2D inPoint3, Avl.RotationDirection inRotationDirection, Optional<float> outAbsoluteAngle, Optional<float> outDirectedAngle, Optional<Avl.Arc2D> outArc )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoint1 | Avl.Point2D | A point on one arm of an angle. | ||
![]() | inPoint2 | Avl.Point2D | The middle point. | ||
![]() | inPoint3 | Avl.Point2D | A point on another arm of the angle. | ||
![]() | inRotationDirection | Avl.RotationDirection | Chooses one of two ways of measuring the angle. | ||
![]() | outAbsoluteAngle | Atl.Optional<float> | Angle value used for measurements <0; 360>. | ||
![]() | outDirectedAngle | Atl.Optional<float> | Angle value used for clockwise transformations <-360; 360>. | ||
![]() | outArc | Atl.Optional<Avl.Arc2D> | Angle visualization object. |