diff options
| author | Bryan Galdrikian <[email protected]> | 2017-08-23 11:24:32 -0700 |
|---|---|---|
| committer | Bryan Galdrikian <[email protected]> | 2017-08-23 11:24:32 -0700 |
| commit | f1e539cadfb085cedc32f9773cfb9d14bfcdf138 (patch) | |
| tree | 7ca74e06a4386dd22fd850a8417a31a85d282a30 /tools/ArtistTools/source/BlastPlugin/Window/FractureSliceSettingsPanel.h | |
| parent | Updated to CL 22661993: (diff) | |
| download | blast-f1e539cadfb085cedc32f9773cfb9d14bfcdf138.tar.xz blast-f1e539cadfb085cedc32f9773cfb9d14bfcdf138.zip | |
Removing ArtistTools and CurveEditor projects
Diffstat (limited to 'tools/ArtistTools/source/BlastPlugin/Window/FractureSliceSettingsPanel.h')
| -rw-r--r-- | tools/ArtistTools/source/BlastPlugin/Window/FractureSliceSettingsPanel.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/tools/ArtistTools/source/BlastPlugin/Window/FractureSliceSettingsPanel.h b/tools/ArtistTools/source/BlastPlugin/Window/FractureSliceSettingsPanel.h deleted file mode 100644 index 5b68575..0000000 --- a/tools/ArtistTools/source/BlastPlugin/Window/FractureSliceSettingsPanel.h +++ /dev/null @@ -1,52 +0,0 @@ -#ifndef FRACTURESLICESETTINGSPANEL_H -#define FRACTURESLICESETTINGSPANEL_H - -#include <QtWidgets/QWidget> -#include "ProjectParams.h" - -namespace Ui { -class FractureSliceSettingsPanel; -} -class FractureGeneralPanel; - -class FractureSliceSettingsPanel : public QWidget -{ - Q_OBJECT - -public: - explicit FractureSliceSettingsPanel(QWidget *parent = 0); - ~FractureSliceSettingsPanel(); - void updateValues(); - void setFractureGeneralPanel(FractureGeneralPanel* generalPanel) { _generalPanel = generalPanel; } - -private slots: - void on_spinBoxNumSlicesX_valueChanged(int arg1); - void on_spinBoxNumSlicesY_valueChanged(int arg1); - void on_spinBoxNumSlicesZ_valueChanged(int arg1); - - void on_spinBoxOffsetVariation_valueChanged(double arg1); - - void on_spinBoxRotationVariation_valueChanged(double arg1); - - void on_spinBoxNoiseAmplitude_valueChanged(double arg1); - - void on_spinBoxNoiseFrequency_valueChanged(double arg1); - - void on_spinBoxNoiseOctaveNumber_valueChanged(int arg1); - - void on_spinBoxNoiseSeed_valueChanged(int arg1); - - void on_spinBoxSurfaceResolution_valueChanged(int arg1); - - void on_btnApplyFracture_clicked(); - -private: - BPPSlice* _getBPPSlice(); - -private: - Ui::FractureSliceSettingsPanel *ui; - bool _updateData; - FractureGeneralPanel* _generalPanel; -}; - -#endif // FRACTURESLICESETTINGSPANEL_H |