| #pragma once |
| |
| #ifndef PLASTICVISUALSETTINGS_H |
| #define PLASTICVISUALSETTINGS_H |
| |
| |
| |
| |
| |
| class TXshColumn; |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| struct PlasticVisualSettings { |
| bool m_applyPlasticDeformation; |
| |
| |
| TXshColumn *m_showOriginalColumn; |
| |
| |
| |
| bool m_drawMeshesWireframe; |
| |
| bool m_drawRigidity; |
| bool m_drawSO; |
| |
| public: |
| PlasticVisualSettings() |
| : m_applyPlasticDeformation(true) |
| , m_showOriginalColumn() |
| , m_drawMeshesWireframe(true) |
| , m_drawRigidity(false) |
| , m_drawSO(false) {} |
| }; |
| |
| #endif |