How do I export pictures with no wireframe, specified multiple scale?

Feng Zhu
Feng Zhu Member Posts: 5
First Comment
**
edited February 1 in Structures


just like the picture shows.

Best Answer

  • Pernelle Marone-Hitz
    Pernelle Marone-Hitz Member, Moderator, Employee Posts: 871
    100 Answers 500 Comments 250 Likes First Anniversary
    ✭✭✭✭
    Answer ✓

    @Feng Zhu To find commands you're unsure of, I'd recomend using the recording:

    This gave me:

    #region Graphics commands
    with Transaction(True):
        Graphics.ViewOptions.ResultPreference.DeformationScaling = MechanicalEnums.Graphics.DeformationScaling.True
        Graphics.ViewOptions.ResultPreference.DeformationScaleMultiplier = 1
    #endregion
    
    #region Graphics commands
    Graphics.ViewOptions.ResultPreference.ScopingDisplay = MechanicalEnums.Graphics.ScopingDisplay.ScopedBodies
    #endregion
    
    #region Toolbar Action
    Graphics.ViewOptions.ResultPreference.ExtraModelDisplay = MechanicalEnums.Graphics.ExtraModelDisplay.NoWireframe
    #endregion
    

Answers