Open Inventor Release 2024.1.0
 
Loading...
Searching...
No Matches
PbTetrahedronCell Class Reference

MeshViz Defines an tetrahedron cell of a volume mesh. More...

#include <MeshViz/3Ddata/PbTetrahedronCell.h>

+ Inheritance diagram for PbTetrahedronCell:

Public Member Functions

 PbTetrahedronCell (const PbMesh *owner_mesh)
 Constructor of a default simple cell.
 
 PbTetrahedronCell (const PbTetrahedronCell &cell)
 Copy constructor.
 
 ~PbTetrahedronCell ()
 Destructor.
 
PbTetrahedronCelloperator= (const PbTetrahedronCell &cell)
 Assignment operator.
 
virtual float getLongestEdgeLength () const
 Gets the length of the longest edge of the cell.
 
virtual float getVolume () const
 Gets the volume of the cell.
 
virtual float getArea () const
 Returns always 0.
 
virtual void getNodesIndexOfEdge (int edge, PbArrayOfInt &nodes_index) const
 Gets the array of 2 index mesh's nodes that belongs to a given edge of this cell.
 
virtual void getNodesIndexOfFacet (int facet, PbArrayOfInt &nodes_index) const
 Gets the array of index mesh's nodes that belongs to a given facet of this cell.
 
virtual void getNodesLocalIndexOfEdge (int edge, PbArrayOfInt &nodes_index) const
 Gets the array of 2 nodes index that belongs to a given edge of this cell.
 
virtual void getNodesLocalIndexOfFacet (int facet, PbArrayOfInt &nodes_index) const
 Gets the array of node index that belongs to a given facet of this cell.
 
virtual int locatePoint (const SbVec3f &coord, float tolerance, SbVec3f &pcoord) const
 Returns 1 if the point is inside the cell, 0 otherwise.
 
virtual void getWeight (const SbVec3f &pcoord, float *weight) const
 Gets the 4 weights of a point defined by its parametric coordinates.
 
- Public Member Functions inherited from PbCell
 PbCell ()
 Constructor.
 
 PbCell (const PbCell &cell)
 Copy constructor.
 
 ~PbCell ()
 Destructor.
 
PbCelloperator= (const PbCell &cell)
 Assignment operator.
 
virtual SbBox3f getBoundingBox () const
 Gets the cell's bounding box.
 
virtual void getBounds (float &xmin, float &ymin, float &zmin, float &xmax, float &ymax, float &zmax) const
 Gets the cell's bounds.
 
virtual SbVec3f getCenter () const
 Gets the cell's geometric center.
 
int getNumFacets () const
 Gets the number of facets.
 
int getNumEdges () const
 Gets the number of edges.
 
int getNumNodes () const
 Gets the number of nodes.
 
int getIndex () const
 Gets the index of the cell in the mesh.
 
SbVec3f getNodeCoord (int nod) const
 Gets the coordinate of the nod (nod must be >=0 and < getNumNodes()).
 
int getNodeIndex (int nod) const
 Gets the index (in the mesh) of a nod (nod must be >=0 and < getNumNodes()).
 
void getNodesIndex (PbArrayOfInt &nodes_index) const
 Gets the array of index mesh's nodes that belongs to this cell.
 
virtual float getValue (const SbVec3f &pcoord, const float *s) const
 Get the scalar value of a point in the cell.
 
virtual SbVec3f getValue (const SbVec3f &pcoord, const SbVec3f *v) const
 Get the vector value of a point in the cell.
 
float getValue (const float *weight, const float *s) const
 Gets the scalar value of a point in this cell, given the point's weights.
 
SbVec3f getValue (const float *weight, const SbVec3f *v) const
 Gets the vector value of a point in this cell, given the point's weights.
 
- Public Member Functions inherited from PbBase
void enableConnection (SbBool flag)
 Activates/deactivates the mechanism of connection.
 
SbBool isConnectionEnabled () const
 Returns TRUE if the connection mechanism is active, otherwise FALSE.
 
void touch ()
 Simulates the changing of an instance of this object, so all connected objects are informed of this change.
 
PbBaseoperator= (const PbBase &base)
 Assignment operator.
 

Detailed Description

MeshViz Defines an tetrahedron cell of a volume mesh.

A tetrahedron cell has 4 facets, 6 edges and 4 nodes. Each facet is a triangle. The 3 first indices defines a facet oriented towards the interior of the cell.

Facets, nodes and edges are numbered as following :

            2
            x
           /|\
          / | \
         /  |  \        facet 0 = 012  edge 0 = 01
        /   |   \       facet 1 = 023  edge 1 = 12
       /    |    \      facet 2 = 031  edge 2 = 20
      /     |     \     facet 3 = 132  edge 3 = 03
   0 x------|------x 1                 edge 4 = 13
      \     |     /                    edge 5 = 23
       \    |    /
        \   |   /
         \  |  /
          \ | /
           \|/
            x
            3

Definition at line 70 of file PbTetrahedronCell.h.

Constructor & Destructor Documentation

◆ PbTetrahedronCell() [1/2]

PbTetrahedronCell::PbTetrahedronCell ( const PbMesh owner_mesh)

Constructor of a default simple cell.

◆ PbTetrahedronCell() [2/2]

PbTetrahedronCell::PbTetrahedronCell ( const PbTetrahedronCell cell)

Copy constructor.

◆ ~PbTetrahedronCell()

PbTetrahedronCell::~PbTetrahedronCell ( )

Destructor.

Member Function Documentation

◆ getArea()

virtual float PbTetrahedronCell::getArea ( ) const
inlinevirtual

Returns always 0.

Implements PbCell.

Definition at line 108 of file PbTetrahedronCell.h.

◆ getLongestEdgeLength()

virtual float PbTetrahedronCell::getLongestEdgeLength ( ) const
virtual

Gets the length of the longest edge of the cell.

Implements PbCell.

◆ getNodesIndexOfEdge()

virtual void PbTetrahedronCell::getNodesIndexOfEdge ( int  edge,
PbArrayOfInt nodes_index 
) const
virtual

Gets the array of 2 index mesh's nodes that belongs to a given edge of this cell.

(edge must be >=0 and < 6)

Implements PbCell.

◆ getNodesIndexOfFacet()

virtual void PbTetrahedronCell::getNodesIndexOfFacet ( int  facet,
PbArrayOfInt nodes_index 
) const
virtual

Gets the array of index mesh's nodes that belongs to a given facet of this cell.

(facet must be >=0 and < 4)

Implements PbCell.

◆ getNodesLocalIndexOfEdge()

virtual void PbTetrahedronCell::getNodesLocalIndexOfEdge ( int  edge,
PbArrayOfInt nodes_index 
) const
virtual

Gets the array of 2 nodes index that belongs to a given edge of this cell.

edge must be >=0 and < 6. Each index in nodes_index is >=0 and < 4.

Implements PbCell.

◆ getNodesLocalIndexOfFacet()

virtual void PbTetrahedronCell::getNodesLocalIndexOfFacet ( int  facet,
PbArrayOfInt nodes_index 
) const
virtual

Gets the array of node index that belongs to a given facet of this cell.

facet must be >=0 and < 4. Each index is >=0 and < 4.

Implements PbCell.

◆ getVolume()

virtual float PbTetrahedronCell::getVolume ( ) const
virtual

Gets the volume of the cell.

Implements PbCell.

◆ getWeight()

virtual void PbTetrahedronCell::getWeight ( const SbVec3f pcoord,
float *  weight 
) const
virtual

Gets the 4 weights of a point defined by its parametric coordinates.

Implements PbCell.

◆ locatePoint()

virtual int PbTetrahedronCell::locatePoint ( const SbVec3f coord,
float  tolerance,
SbVec3f pcoord 
) const
virtual

Returns 1 if the point is inside the cell, 0 otherwise.

Gets also the parametric coordinate of the point .

Implements PbCell.

◆ operator=()

PbTetrahedronCell & PbTetrahedronCell::operator= ( const PbTetrahedronCell cell)

Assignment operator.


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