| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- //##########################################################################
- //# #
- //# CLOUDCOMPARE #
- //# #
- //# This program is free software; you can redistribute it and/or modify #
- //# it under the terms of the GNU General Public License as published by #
- //# the Free Software Foundation; version 2 or later of the License. #
- //# #
- //# This program is distributed in the hope that it will be useful, #
- //# but WITHOUT ANY WARRANTY; without even the implied warranty of #
- //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
- //# GNU General Public License for more details. #
- //# #
- //# COPYRIGHT: EDF R&D / TELECOM ParisTech (ENST-TSI) #
- //# #
- //##########################################################################
- #include "ccPtsSamplingDlg.h"
- ccPtsSamplingDlg::ccPtsSamplingDlg(QWidget* parent/*=nullptr*/)
- : QDialog(parent, Qt::Tool)
- , Ui::PointsSamplingDialog()
- {
- setupUi(this);
- }
- bool ccPtsSamplingDlg::generateNormals() const
- {
- return normalsCheckBox->isChecked();
- }
- void ccPtsSamplingDlg::setGenerateNormals(bool state)
- {
- normalsCheckBox->setChecked(state);
- }
- bool ccPtsSamplingDlg::interpolateRGB() const
- {
- return colorsCheckBox->isChecked();
- }
- bool ccPtsSamplingDlg::interpolateTexture() const
- {
- return textureCheckBox->isChecked();
- }
- bool ccPtsSamplingDlg::useDensity() const
- {
- return dRadioButton->isChecked();
- }
- void ccPtsSamplingDlg::setUseDensity(bool state)
- {
- dRadioButton->setChecked(state);
- }
- double ccPtsSamplingDlg::getDensityValue() const
- {
- return dDoubleSpinBox->value();
- }
- void ccPtsSamplingDlg::setDensityValue(double density)
- {
- dDoubleSpinBox->setValue(density);
- }
- unsigned ccPtsSamplingDlg::getPointsNumber() const
- {
- return pnSpinBox->value();
- }
- void ccPtsSamplingDlg::setPointsNumber(int count)
- {
- pnSpinBox->setValue(count);
- }
|