Home | Doxygen Documentation | Tutorials | Developer Tools (restricted)

Public Member Functions | Protected Member Functions | Private Attributes
graphics::BoundaryDXCell< F > Class Template Reference

Gathers information about boundary faces (or edges in 2D) and prepares information to be written to an OpenDX file. More...

#include <meshDX.hh>

Inheritance diagram for graphics::BoundaryDXCell< F >:
Inheritance graph
[legend]
Collaboration diagram for graphics::BoundaryDXCell< F >:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 BoundaryDXCell (VertexList &vtxList)
const std::list< const
concepts::Connector * > & 
faces () const
 Returns the list of faces.
virtual void operator() (const concepts::Cell &cell) throw (concepts::MissingFeature, concepts::Assertion)
 Application operator.
virtual void operator() (const concepts::Element< F > &elm) throw (concepts::MissingFeature)
 Application operator.
virtual ~BoundaryDXCell ()

Protected Member Functions

virtual std::ostream & info (std::ostream &os) const
 Returns information in an output stream.

Private Attributes

std::list< const
concepts::Connector * > 
faces_
 List of faces (or edges) which have boundary attribute != 0.
VertexListvtxList_
 List of vertices.

Detailed Description

template<typename F>
class graphics::BoundaryDXCell< F >

Gathers information about boundary faces (or edges in 2D) and prepares information to be written to an OpenDX file.

You should not use this class directly. Instead, use the executor class MeshDX or (even simpler) its trampoline function drawMeshDX (which hides the template parameter of MeshDX).

See also:
MeshDX the executor class
drawMeshDX the trampoline function of MeshDX
Author:
Philipp Frauenfelder, 2002

Definition at line 212 of file meshDX.hh.


Constructor & Destructor Documentation

template<typename F >
graphics::BoundaryDXCell< F >::BoundaryDXCell ( VertexList vtxList) [inline]

Definition at line 214 of file meshDX.hh.

template<typename F >
virtual graphics::BoundaryDXCell< F >::~BoundaryDXCell ( ) [virtual]

Member Function Documentation

template<typename F >
const std::list<const concepts::Connector*>& graphics::BoundaryDXCell< F >::faces ( ) const [inline]

Returns the list of faces.

Definition at line 223 of file meshDX.hh.

template<class F>
virtual std::ostream& concepts::CellPostprocess< F >::info ( std::ostream &  os) const [protected, virtual, inherited]
template<typename F >
virtual void graphics::BoundaryDXCell< F >::operator() ( const concepts::Element< F > &  elm) throw (concepts::MissingFeature) [virtual]

Application operator.

This application operator has to be overloaded to post process a space.

Parameters:
elmCurrent element

Implements concepts::CellPostprocess< F >.

template<typename F >
virtual void graphics::BoundaryDXCell< F >::operator() ( const concepts::Cell cell) throw (concepts::MissingFeature, concepts::Assertion) [virtual]

Application operator.

This application operator has to be overloaded to post process a mesh.

Parameters:
cellCurrent cell

Implements concepts::CellPostprocess< F >.


Member Data Documentation

template<typename F >
std::list<const concepts::Connector*> graphics::BoundaryDXCell< F >::faces_ [private]

List of faces (or edges) which have boundary attribute != 0.

Definition at line 230 of file meshDX.hh.

template<typename F >
VertexList& graphics::BoundaryDXCell< F >::vtxList_ [private]

List of vertices.

Definition at line 227 of file meshDX.hh.


The documentation for this class was generated from the following file:

Home | Doxygen Documentation | Tutorials | Developer Tools (restricted)