You are here: Start » FIL.NET » Function Reference » Geometry 2D » Geometry 2D Angle Metrics » FIL.AngleBetweenVectors
Measures the angle between two vectors.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void AngleBetweenVectors ( FilNet.Vector2D inVector1, FilNet.Vector2D inVector2, NullableValue<float> outAbsoluteAngle, NullableValue<float> outDirectedAngle )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inVector1 | FilNet.Vector2D | Start vector. | ||
![]() | inVector2 | FilNet.Vector2D | Target vector. | ||
![]() | outAbsoluteAngle | FilNet.NullableValue<float> | Can be null to skip this parameter calculation. | ||
![]() | outDirectedAngle | FilNet.NullableValue<float> | Can be null to skip this parameter calculation. |
Description
Note that because of inaccuracies of floating-point arithmetic, some geometric operations (including this one) may lead to unpredictable results for degenerated cases. In this filter such a case occurs when a zero vector is given on input.
Examples
![]() |
AngleBetweenVectors performed on two vectors: inVector1 DeltaX = 10, DeltaY = 10, inVector2 DeltaX = -5, DeltaY = 5, inRotationDirection = CounterClockwise.
outAbsoluteAngle returns 270, and outDirectedAngle returns -270.
Function Overrides
- AngleBetweenVectors(Vector2D, Vector2D, Nullable<RotationDirection>, Single, Single)
- AngleBetweenVectors(Vector2D, Vector2D, Nullable<RotationDirection>, NullableValue<Single>, NullableValue<Single>)