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