ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
ecvExportCoordToSFDlg.cpp
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - CloudViewer: www.cloudViewer.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2024 www.cloudViewer.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
9 
11  : QDialog(parent, Qt::Tool), Ui::ExportCoordToSFDlg() {
12  setupUi(this);
13 }
14 
15 bool ccExportCoordToSFDlg::exportX() const { return xCheckBox->isChecked(); }
16 
17 bool ccExportCoordToSFDlg::exportY() const { return yCheckBox->isChecked(); }
18 
19 bool ccExportCoordToSFDlg::exportZ() const { return zCheckBox->isChecked(); }
ccExportCoordToSFDlg(QWidget *parent=0)
Default constructor.
bool exportX() const
Returns whether X dimension should be exported.
bool exportZ() const
Returns whether Z dimension should be exported.
bool exportY() const
Returns whether Y dimension should be exported.