Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
iwr
dune-vtk
Commits
5378fd5b
Commit
5378fd5b
authored
Aug 27, 2018
by
Praetorius, Simon
Browse files
Cleanup of some documentation
parent
4747bc3d
Changes
5
Show whitespace changes
Inline
Side-by-side
dune/vtk/datacollector.hh
View file @
5378fd5b
...
...
@@ -42,6 +42,12 @@ public:
asDerived
().
updateImpl
();
}
/// Return the number of overlapping elements
int
ghostLevel
()
const
{
return
asDerived
().
ghostLevelImpl
();
}
/// \brief Return a flat vector of point coordinates
/**
* All coordinates are extended to 3 components and concatenated.
...
...
@@ -104,7 +110,15 @@ protected: // default implementations
return
gridView_
.
size
(
0
);
}
void
updateImpl
()
{
/* do nothing */
}
void
updateImpl
()
{
/* do nothing */
}
int
ghostLevelImpl
()
const
{
return
gridView_
.
overlapSize
(
0
);
}
// Evaluate `fct` in center of cell
template
<
class
T
,
class
GlobalFunction
>
...
...
dune/vtk/writers/vtkimagedatawriter.hh
View file @
5378fd5b
...
...
@@ -14,7 +14,11 @@
namespace
Dune
{
namespace
experimental
{
/// File-Writer for VTK .vtu files
/// File-Writer for ImageData VTK .vti files
/**
* Requirement:
* - DataCollector must be a model of \ref StructuredDataCollector
**/
template
<
class
GridView
,
class
DataCollector
=
StructuredDataCollector
<
GridView
>
>
class
VtkImageDataWriter
:
public
VtkWriterInterface
<
GridView
,
DataCollector
>
...
...
dune/vtk/writers/vtkrectilineargridwriter.hh
View file @
5378fd5b
...
...
@@ -14,7 +14,11 @@
namespace
Dune
{
namespace
experimental
{
/// File-Writer for VTK .vtu files
/// File-Writer for RectilinearGrid VTK .vtr files
/**
* Requirement:
* - DataCollector must be a model of \ref StructuredDataCollector
**/
template
<
class
GridView
,
class
DataCollector
=
StructuredDataCollector
<
GridView
>
>
class
VtkRectilinearGridWriter
:
public
VtkWriterInterface
<
GridView
,
DataCollector
>
...
...
dune/vtk/writers/vtkstructuredgridwriter.hh
View file @
5378fd5b
...
...
@@ -14,7 +14,11 @@
namespace
Dune
{
namespace
experimental
{
/// File-Writer for VTK .vtu files
/// File-Writer for StructuredGrid VTK .vts files
/**
* Requirement:
* - DataCollector must be a model of \ref StructuredDataCollector
**/
template
<
class
GridView
,
class
DataCollector
=
StructuredDataCollector
<
GridView
>
>
class
VtkStructuredGridWriter
:
public
VtkWriterInterface
<
GridView
,
DataCollector
>
...
...
dune/vtk/writers/vtkunstructuredgridwriter.hh
View file @
5378fd5b
...
...
@@ -15,6 +15,10 @@
namespace
Dune
{
namespace
experimental
{
/// File-Writer for VTK .vtu files
/**
* Requirement:
* - DataCollector must be a model of \ref DataCollector
**/
template
<
class
GridView
,
class
DataCollector
=
DefaultDataCollector
<
GridView
>
>
class
VtkUnstructuredGridWriter
:
public
VtkWriterInterface
<
GridView
,
DataCollector
>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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