Eyeshot 11 Documentation
WinForms Control / Tutorials / Changing the visual refinement tolerance
In This Topic
    Changing the visual refinement tolerance
    In This Topic

    Eyeshot automatically computes the more convenient visual refinement tolerance for current model, in the case you are not satisfied with it you can call the SingleViewportLayout.Entities.RegenAllCurved() method.

    The following code fragment uses RegenAllCurved() to set the visual refinement tolerance to 0.05 units. Only curved entities will be regenerated.

    viewportLayout1.Entities.RegenAllCurved(0.05);
    viewportLayout1.Entities.RegenAllCurved(0.05)
    See Also