You are here: Start » FIL.NET » Function Reference » Region » Region Metrics » FIL.RegionToRegionDistance
Computes minimal distance between one of the points of the first region with one of the points of the second region.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void RegionToRegionDistance ( FilNet.Region inRegion1, FilNet.Region inRegion2, float inResolution, out float outDistance, out FilNet.Segment2D outConnectingSegment )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inRegion1 | FilNet.Region | First input region. | ||
![]() | inRegion2 | FilNet.Region | Second input region. | ||
![]() | inResolution | float | <0.0f, INF> | 1.0f | Number of real-world units per one pixel. Default value: 1.0f. |
![]() | outDistance | float | |||
![]() | outConnectingSegment | FilNet.Segment2D |
Description
Operation computes length of the shortest segment that connects center of one of inRegion1's point which center of one of inRegion2's point.
Examples
![]() |
![]() |
![]() |
RegionToRegionDistance performed on sample regions produced outDistance = 118,5116. The shortest segment connecting regions is presented on the bottom image
Remarks
- inRegion1 and inRegion2 must not be empty, otherwise an error with appropriate description occurs.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Empty region on input in RegionToRegionDistance. |
Function Overrides
- RegionToRegionDistance(Region, Region, Single, Single)
- RegionToRegionDistance(Region, Region, Single, Single, NullableValue<Segment2D>)