| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #pragma once
- //##########################################################################
- //# #
- //# 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: CloudCompare project #
- //# #
- //##########################################################################
- #include <ui_setSFAsVec3Dlg.h>
- //Qt
- #include <QDialog>
- class ccPointCloud;
- //! Let the user choose up to 3 scalar fields (to be used as Normal components)
- class ccSetSFsAsVec3Dialog : public QDialog, public Ui::SetSFsAsVec3Dialog
- {
- Q_OBJECT
- public:
-
- //! Default constructor
- ccSetSFsAsVec3Dialog( const ccPointCloud* cloud,
- const QString& xLabel,
- const QString& yLabel,
- const QString& zLabel,
- bool allowUnchanged,
- QWidget* parent = nullptr);
- //! No SF index
- static const int SF_INDEX_NO = -1;
- //! 'Zero' SF index
- static const int SF_INDEX_ZERO = -2;
- //! 'One' SF index
- static const int SF_INDEX_ONE = -3;
- //! 'Unchanged' index
- static const int SF_INDEX_UNCHANGED = -4;
- //! Sets the 3 SF indexes
- void setSFIndexes(int sf1Index, int sf2Index, int sf3Index);
- //! Returns the 3 SF indexes
- void getSFIndexes(int& sf1Index, int& sf2Index, int& sf3Index) const;
- protected:
- //! Converts an input 'SF' index to a combo-box index
- int toComboBoxIndex(int index) const;
- //! Converts a combo-box index to a 'SF' index
- int fromComboBoxIndex(int index) const;
- //! Number of constant fields at the beginning of each combo-box
- int m_constFields;
- };
|