Back to FabImage Library Lite website
You are here: Start » Geometry 2D Features » PointsDiameter

PointsDiameter
Finds the longest segment connecting two points from a given array.
Syntax
void fil::PointsDiameter ( const ftl::Array<fil::Point2D>& inPoints, ftl::Optional<fil::Segment2D&> outDiameter = ftl::NIL, ftl::Optional<float&> outDiameterLength = ftl::NIL )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inPoints | const Array<Point2D>& | Input array of points | |
![]() |
outDiameter | Optional<Segment2D&> | NIL | Longest segment found |
![]() |
outDiameterLength | Optional<float&> | NIL | Length of longest segment found |
Examples

PointsDiameter performed on an array of input points. The orange line is the result.
Errors
Error type | Description |
---|---|
DomainError | Empty array of points on input in PointsDiameter. |