Back to FabImage Library website
You are here: Start » Function Reference » Geometry 2D Angle Metrics » AngleBetweenSegmentLines_Deprecated

AngleBetweenSegmentLines_Deprecated
Header: | FIL.h |
---|---|
Namespace: | fil |
Measures the angle between two lines containing the input segments.
Syntax
C++
void fil::AngleBetweenSegmentLines_Deprecated ( const fil::Segment2D& inSegment1, const fil::Segment2D& inSegment2, ftl::Optional<float&> outSmallerAngle, ftl::Optional<float&> outLargerAngle )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inSegment1 | const Segment2D& | Segment defining the first line | |
![]() |
inSegment2 | const Segment2D& | Segment defining the second line | |
![]() |
outSmallerAngle | Optional<float&> | The smaller angle <0, 90> | |
![]() |
outLargerAngle | Optional<float&> | The larger angle <90, 180> |
Optional Outputs
The computation of following outputs can be switched off by passing value ftl::NIL
to these parameters: outSmallerAngle, outLargerAngle.
Read more about Optional Outputs.