ccSensorComputeScatteringAnglesDlg.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //##########################################################################
  2. //# #
  3. //# CLOUDCOMPARE #
  4. //# #
  5. //# This program is free software; you can redistribute it and/or modify #
  6. //# it under the terms of the GNU General Public License as published by #
  7. //# the Free Software Foundation; version 2 or later of the License. #
  8. //# #
  9. //# This program is distributed in the hope that it will be useful, #
  10. //# but WITHOUT ANY WARRANTY; without even the implied warranty of #
  11. //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
  12. //# GNU General Public License for more details. #
  13. //# #
  14. //# COPYRIGHT: EDF R&D / TELECOM ParisTech (ENST-TSI) #
  15. //# #
  16. //##########################################################################
  17. #ifndef CC_SF_SCATTERING_DLG_HEADER
  18. #define CC_SF_SCATTERING_DLG_HEADER
  19. #include <QDialog>
  20. namespace Ui {
  21. class sensorComputeScatteringAnglesDlg;
  22. }
  23. //! Dialog for scattering angles computation
  24. class ccSensorComputeScatteringAnglesDlg : public QDialog
  25. {
  26. Q_OBJECT
  27. public:
  28. //! Default constructor
  29. explicit ccSensorComputeScatteringAnglesDlg(QWidget* parent = nullptr);
  30. ~ccSensorComputeScatteringAnglesDlg();
  31. //! Returns whether angles should be converted to degrees
  32. bool anglesInDegrees() const;
  33. private:
  34. Ui::sensorComputeScatteringAnglesDlg* m_ui;
  35. };
  36. #endif //CC_SF_SCATTERING_DLG_HEADER