I am trying to understand how vtkImplicitModeller works by studying the Hello example and tuning the vtkImplicitModeller parameters.
I now know the meaning of SetSampleDimensions and SetModelBounds by changing these two from the original (110, 40, 20) /(-1.0, 10.0, -1.0, 3.0, -1.0, 1.0) to (80, 40, 20)/(-1.0, 7.0, -1.0, 3.0, -1.0, 1.0). However, by changing the SetMaximumDistance from 0.8 to 0.05 I do not see any difference:
SetModelBounds(-1.0, 7.0, -1.0, 3.0, -1.0, 1.0)
SetMaximumDistance (0.8)
SetModelBounds(-1.0, 7.0, -1.0, 3.0, -1.0, 1.0)
SetMaximumDistance (0.05)
I appreciate and thank you for explaining how MaximumDistance influences the implicit model.