The LatticeMergeOverlap option changes the method used to combine multiple values from different lattices for a Merge module. The OptionValue is either 0, 1, 2, 3, 4, 5, 6 for Average, Count, First, Last, Maximum, Median, or Minimum.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Merge”)
object.Option(“LatticeMergeOverlap”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example sets the overlap method for the Merge module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Merge")
CommandApi.Option ("LatticeMergeOverlap", "5")
Used by: LatticeMerge
See Also