ccPrimitiveDistanceDlg.cpp 1.5 KB

123456789101112131415161718192021222324252627282930
  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: CloudCompare Project / Chris Brown #
  15. //# #
  16. //##########################################################################
  17. #include "ccPrimitiveDistanceDlg.h"
  18. ccPrimitiveDistanceDlg::ccPrimitiveDistanceDlg(QWidget* parent)
  19. : QDialog(parent)
  20. , Ui::primitiveDistanceDlg()
  21. {
  22. setupUi(this);
  23. signedDistCheckBox->setChecked(true);
  24. flipNormalsCheckBox->setEnabled(true);
  25. flipNormalsCheckBox->setChecked(false);
  26. treatPlanesAsBoundedCheckBox->setChecked(false);
  27. }