OGS
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
v
w
z
Enumerations
b
c
d
e
f
g
i
l
m
n
o
p
s
t
u
v
Enumerator
a
b
c
d
e
f
g
h
l
m
n
p
r
s
t
v
y
Classes
Class List
Class Index
Class Hierarchy
Files
File List
File Members
All
a
b
c
d
e
f
g
i
k
m
n
o
p
r
s
t
v
w
x
Functions
a
c
d
e
f
g
i
m
o
p
r
s
t
v
w
Variables
Typedefs
Enumerations
Macros
b
c
g
m
n
o
p
r
s
t
▼
OGS
►
OpenGeoSys 6.5.4-396-ge0d32a01be0 source code documentation
►
OGS CTests—Project Files
►
OGS Input File Parameters—Quality Assurance
►
OGS Input File Parameters
BulkMappingDocuPage
Todo List
OGS Input File Parameters—List of incomplete documentation pages
Bibliography
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
Applications
►
ApplicationsLib
►
CLI
▼
DataExplorer
►
Base
▼
DataView
►
DiagramView
►
StratView
►
AddFaultsToVoxelGridDialog.cpp
►
AddFaultsToVoxelGridDialog.h
AddLayerToMeshDialog.cpp
►
AddLayerToMeshDialog.h
►
BaseItem.h
ColorTableModel.cpp
►
ColorTableModel.h
ColorTableView.cpp
►
ColorTableView.h
CondFromRasterDialog.cpp
►
CondFromRasterDialog.h
►
CondItem.h
CreateStructuredGridDialog.cpp
►
CreateStructuredGridDialog.h
DataExplorerSettingsDialog.cpp
►
DataExplorerSettingsDialog.h
DirectConditionGenerator.cpp
►
DirectConditionGenerator.h
►
ElementTreeModel.cpp
►
ElementTreeModel.h
ElementTreeView.cpp
►
ElementTreeView.h
FemConditionModel.cpp
►
FemConditionModel.h
FemConditionView.cpp
►
FemConditionView.h
GEOModels.cpp
►
GEOModels.h
►
GeoObjectListItem.h
GeoOnMeshMappingDialog.cpp
►
GeoOnMeshMappingDialog.h
GeoTabWidget.cpp
►
GeoTabWidget.h
►
GeoTreeItem.h
GeoTreeModel.cpp
►
GeoTreeModel.h
GeoTreeView.cpp
►
GeoTreeView.h
GMSHPrefsDialog.cpp
►
GMSHPrefsDialog.h
Layers2GridDialog.cpp
►
Layers2GridDialog.h
LicenseDialog.cpp
►
LicenseDialog.h
LinearEditDialog.cpp
►
LinearEditDialog.h
LineEditDialog.cpp
►
LineEditDialog.h
MergeGeometriesDialog.cpp
►
MergeGeometriesDialog.h
MeshAnalysisDialog.cpp
►
MeshAnalysisDialog.h
MeshElementRemovalDialog.cpp
►
MeshElementRemovalDialog.h
MeshItem.cpp
►
MeshItem.h
MeshLayerEditDialog.cpp
►
MeshLayerEditDialog.h
MeshMapping2DDialog.cpp
►
MeshMapping2DDialog.h
MeshModel.cpp
►
MeshModel.h
MeshQualitySelectionDialog.cpp
►
MeshQualitySelectionDialog.h
MeshTabWidget.cpp
►
MeshTabWidget.h
MeshValueEditDialog.cpp
►
MeshValueEditDialog.h
MeshView.cpp
►
MeshView.h
ModellingTabWidget.cpp
►
ModellingTabWidget.h
ModelTreeItem.cpp
►
ModelTreeItem.h
ProcessModel.cpp
►
ProcessModel.h
►
ProcessVarItem.h
ProcessView.cpp
►
ProcessView.h
RasterDataToMeshDialog.cpp
►
RasterDataToMeshDialog.h
SaveMeshDialog.cpp
►
SaveMeshDialog.h
SelectMeshDialog.cpp
►
SelectMeshDialog.h
SetNameDialog.cpp
►
SetNameDialog.h
SHPImportDialog.cpp
►
SHPImportDialog.h
StationTabWidget.cpp
►
StationTabWidget.h
StationTreeModel.cpp
►
StationTreeModel.h
StationTreeView.cpp
►
StationTreeView.h
SurfaceExtractionDialog.cpp
►
SurfaceExtractionDialog.h
TranslateDataDialog.cpp
►
TranslateDataDialog.h
►
Vtu2GridDialog.cpp
►
Vtu2GridDialog.h
►
VtkVis
►
main.cpp
mainwindow.cpp
►
mainwindow.h
►
DataHolderLib
►
FileIO
►
InSituLib
►
Python
►
Utils
►
BaseLib
►
build
►
ChemistryLib
Documentation
►
GeoLib
►
InfoLib
►
MaterialLib
►
MathLib
►
MeshGeoToolsLib
►
MeshLib
►
MeshToolsLib
►
NumLib
►
ParameterLib
►
ProcessLib
►
File Members
SurfaceExtractionDialog.h
Go to the documentation of this file.
1
15
#pragma once
16
17
#include <Eigen/Core>
18
#include <QDialog>
19
20
#include "ui_SurfaceExtraction.h"
21
22
namespace
MeshLib
{
23
class
Mesh;
24
}
25
29
class
SurfaceExtractionDialog
:
public
QDialog,
private
Ui_SurfaceExtraction
30
{
31
Q_OBJECT
32
33
public
:
34
explicit
SurfaceExtractionDialog
(QDialog* parent =
nullptr
);
35
~SurfaceExtractionDialog
()
override
=
default
;
36
37
int
getTolerance
()
const
{
return
_tolerance
; }
38
Eigen::Vector3d
const
&
getNormal
()
const
{
return
_dir
; }
39
40
private
slots:
42
void
accept
()
override
;
43
45
void
reject
()
override
{ this->done(QDialog::Rejected); };
46
47
private
:
48
int
_tolerance
{90};
49
Eigen::Vector3d
_dir
{0, 0, -1};
50
};
29
class
SurfaceExtractionDialog
:
public
QDialog,
private
Ui_SurfaceExtraction {
…
};
SurfaceExtractionDialog
A dialog window for managing properties for writing meshes to files.
Definition
SurfaceExtractionDialog.h:30
SurfaceExtractionDialog::_dir
Eigen::Vector3d _dir
Definition
SurfaceExtractionDialog.h:49
SurfaceExtractionDialog::reject
void reject() override
Instructions if the Cancel-Button has been pressed.
Definition
SurfaceExtractionDialog.h:45
SurfaceExtractionDialog::getTolerance
int getTolerance() const
Definition
SurfaceExtractionDialog.h:37
SurfaceExtractionDialog::~SurfaceExtractionDialog
~SurfaceExtractionDialog() override=default
SurfaceExtractionDialog::_tolerance
int _tolerance
Definition
SurfaceExtractionDialog.h:48
SurfaceExtractionDialog::accept
void accept() override
Instructions if the OK-Button has been pressed.
Definition
SurfaceExtractionDialog.cpp:31
SurfaceExtractionDialog::getNormal
Eigen::Vector3d const & getNormal() const
Definition
SurfaceExtractionDialog.h:38
SurfaceExtractionDialog::SurfaceExtractionDialog
SurfaceExtractionDialog(QDialog *parent=nullptr)
Definition
SurfaceExtractionDialog.cpp:19
MeshLib
Definition
ProjectData.h:41
Applications
DataExplorer
DataView
SurfaceExtractionDialog.h
Generated by
1.12.0