Package org.locationtech.jts.noding
Interface SegmentStringDissolver.SegmentStringMerger
-
- Enclosing class:
- SegmentStringDissolver
public static interface SegmentStringDissolver.SegmentStringMergerA merging strategy which can be used to update the context data ofSegmentStrings which are merged during the dissolve process.- Author:
- mbdavis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidmerge(SegmentString mergeTarget, SegmentString ssToMerge, boolean isSameOrientation)Updates the context data of a SegmentString when an identical (up to orientation) one is found during dissolving.
-
-
-
Method Detail
-
merge
void merge(SegmentString mergeTarget, SegmentString ssToMerge, boolean isSameOrientation)
Updates the context data of a SegmentString when an identical (up to orientation) one is found during dissolving.- Parameters:
mergeTarget- the segment string to updatessToMerge- the segment string being dissolvedisSameOrientation-trueif the strings are in the same direction,falseif they are opposite
-
-