BorderMatchOperator.ShortestMatchFactor Property
Gets or sets a factor that, when multiplied with MaxDisplacement, gives the minimal length of a border that will be regarded as shared with another polygon.
Syntax
public AttributeVariable< System.Double > ShortestMatchFactor { get; set; }
Property Value
Default: 2.0
A factor that, when multiplied with MaxDisplacement, gives the minimal length of a border that will be regarded as shared with another polygon.
Remarks
Matches that are shorter than the minimum will be discarded.
Note that each of the two polygons may have its own value of MaxDisplacement and its own value of ShortestMatchFactor. Each polygon measures the match along its own perimeter as the total length of truly matching pieces; that is, the match may contain some short gaps that have been ignored (see ShortestGapFactor), but the length of these gaps is excluded. Both polygons must agree that the match is long enough to be used.
Using an IndirectAttributeVariable<System.Double>, can be less efficient and is not recommended. The reason is that the operator must extend the requested view area with a margin that exceeds all possible values of MaxDisplacement * ShortestMatchFactor / 2. When ShortestMatchFactor is indirect, the operator does not know how large it may become, and it will assume that it may be as much as 20.0. If this default is larger than was necessary, the operator will be slower; if the default is too small, matches that are long enough in reality may appear too short because the polygons have been clipped by a RectangleClipOperator, and omitting the RectangleClipOperator would also slow down the operator.
Platforms
Windows, Linux, Android