Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
59b70b04
Commit
59b70b04
authored
Aug 10, 2017
by
mattijs
Browse files
BUG: setSet: use of one-argument constructor. Fixes
#566
.
parent
6d8a09fd
Changes
5
Hide whitespace changes
Inline
Side-by-side
applications/utilities/mesh/manipulation/setSet/setSet.C
View file @
59b70b04
...
...
@@ -85,7 +85,7 @@ void writeVTK
vtk
::
writeFaceSet
(
mesh
,
currentSet
,
dynamicCast
<
const
faceSet
&>
(
currentSet
)
,
mesh
.
time
().
path
()
/
vtkBaseName
,
vtk
::
formatType
::
LEGACY_BINARY
);
...
...
@@ -96,7 +96,7 @@ void writeVTK
vtk
::
writeCellSetFaces
(
mesh
,
currentSet
,
dynamicCast
<
const
cellSet
&>
(
currentSet
)
,
mesh
.
time
().
path
()
/
vtkBaseName
,
vtk
::
formatType
::
LEGACY_BINARY
);
...
...
@@ -106,7 +106,7 @@ void writeVTK
vtk
::
writePointSet
(
mesh
,
currentSet
,
dynamicCast
<
const
pointSet
&>
(
currentSet
)
,
mesh
.
time
().
path
()
/
vtkBaseName
,
vtk
::
formatType
::
LEGACY_BINARY
);
...
...
src/meshTools/output/foamVtkWriteFaceSet.H
View file @
59b70b04
...
...
@@ -26,7 +26,7 @@ InNamespace
Description
Write faceSet to vtk polydata file.
The data are the
original point
ids.
The data are the
mesh face
ids.
SourceFiles
foamVtkWritePointSet.C
...
...
@@ -49,7 +49,7 @@ class fileName;
namespace
vtk
{
//- Write
point
Set to vtk polydata file.
//- Write
face
Set to vtk polydata file.
// Only one data which is original pointID.
void
writeFaceSet
(
...
...
src/meshTools/sets/topoSets/cellSet.H
View file @
59b70b04
...
...
@@ -65,7 +65,7 @@ public:
// Constructors
//- Construct from IOobject. No checking.
cellSet
(
const
IOobject
&
obj
);
explicit
cellSet
(
const
IOobject
&
obj
);
//- Construct from polyMesh and name. Checks for valid cell ids.
cellSet
...
...
src/meshTools/sets/topoSets/faceSet.H
View file @
59b70b04
...
...
@@ -59,9 +59,8 @@ public:
// Constructors
//- Construct from IOobject
faceSet
(
const
IOobject
&
obj
);
explicit
faceSet
(
const
IOobject
&
obj
);
//- Construct from objectRegistry and name
faceSet
...
...
src/meshTools/sets/topoSets/pointSet.H
View file @
59b70b04
...
...
@@ -60,9 +60,8 @@ public:
// Constructors
//- Construct from IOobject
pointSet
(
const
IOobject
&
obj
);
explicit
pointSet
(
const
IOobject
&
obj
);
//- Construct from objectRegistry and name
pointSet
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment