MeVisLab Toolbox Reference
|
Defines the mesh component: quad. More...
#include <WEMQuad.h>
Public Member Functions | |
WEMQuad () | |
Standard constructor. | |
WEMQuad (const WEMQuad &q) | |
Standard copy constructor. | |
~WEMQuad () override | |
Standard destructor. | |
void | clone (WEMQuad *quad) |
Clones the given quad. | |
void | reset () |
void | computeNormal () override |
Computes the normal. | |
unsigned int | getNumNodes () const override |
Returns the number of nodes. | |
int | getIndex (WEMNode *node) const override |
Returns the index of the given node. | |
WEMNode * | getNodeAt (unsigned int index) override |
Returns the node at the given index in this face. | |
const WEMNode * | getNodeAt (unsigned int index) const override |
Returns the node at the given index in this face. | |
void | setNode (unsigned int index, WEMNode *node) override |
Sets the given node to the given index in this face. | |
virtual void | setNodes (WEMNode *node1, WEMNode *node2, WEMNode *node3, WEMNode *node4) |
Sets the given nodes. | |
void | replace (WEMNode *orig, WEMNode *replacement) override |
Replaces the given orig node by the given replace node. | |
bool | contains (WEMNode *node) const override |
Returns whether this face contains the given node. | |
Vector3 | getNodePositionAt (unsigned int index) const override |
Returns the position of a node at the given index. | |
int | getIndex (WEMEdge *edge) const override |
Returns the index of the given node. | |
WEMEdge * | getEdgeAt (unsigned int index) override |
Returns the node at the given index in this face. | |
const WEMEdge * | getEdgeAt (unsigned int index) const override |
Returns the node at the given index in this face. | |
void | setEdge (unsigned int index, WEMEdge *edge) override |
Sets the given edge to the given index in this face. | |
virtual void | setEdges (WEMEdge *edge1, WEMEdge *edge2, WEMEdge *edge3, WEMEdge *edge4) |
Sets the given edges. | |
void | replace (WEMEdge *orig, WEMEdge *replacement) override |
Replaces the given orig edge by the given replace edge. | |
bool | contains (WEMEdge *edge) const override |
Returns whether this face contains the given edge. | |
void | removeEdges () override |
Removes all edge pointers of this face. | |
Vector3 | getCentroid () const override |
Returns the geometric centroid of this face. | |
void | getCentroid (Vector3 ¢roid) const override |
double | getPerimeter () const override |
Calculates the perimeter of this face. | |
double | getArea () const override |
Calculates the area of this face. | |
WEMNode * | getOther (WEMNode *, WEMNode *) override |
Returns the node incident to this face that is not given as a parameter. | |
const WEMNode * | getOther (WEMNode *, WEMNode *) const override |
Returns the node incident to this face that is not given as a parameter. | |
WEMEdge * | getOther (WEMEdge *, WEMEdge *) override |
Returns the edge incident to this face that is not given as a parameter. | |
const WEMEdge * | getOther (WEMEdge *, WEMEdge *) const override |
Returns the edge incident to this face that is not given as a parameter. | |
WEMEdge * | getEdgeNotContaining (WEMNode *) override |
Returns the edge not containing given node. | |
const WEMEdge * | getEdgeNotContaining (WEMNode *) const override |
Returns the edge not containing given node. | |
double | getQuality () const override |
Calculates the quality of face. | |
int | isConcave () const override |
Checks whether this face a concave polygon. | |
void | mirror () override |
Mirrors this face. Note that edge information gets corrupted! Use WEM::buildEdgeConnectivity afterwards! | |
Public Member Functions inherited from ml::WEMFace | |
WEMFace () | |
Standard constructor. | |
WEMFace (const WEMFace &f) | |
Standard copy constructor. | |
WEMFace (WEMFace &&f) noexcept | |
WEMFace & | operator= (WEMFace &&f) noexcept |
~WEMFace () override | |
Standard destructor. | |
void | reset () |
Resets the object to default constructed state. | |
void | clone (WEMFace *face) |
Clones given face. | |
Vector3 | getNormal () const |
Returns the normal. | |
void | setNormal (const Vector3 &normal) |
Sets the normal. | |
virtual WEMBoundingBox | getBoundingBox () |
Calculates the bounding box of face. | |
bool | isBoundingBoxValid () const |
void | invalidateBoundingBox () |
Public Member Functions inherited from ml::WEMPrimitive | |
WEMPrimitive () | |
WEMPrimitive (const WEMPrimitive &)=default | |
WEMPrimitive (WEMPrimitive &&p) noexcept | |
WEMPrimitive & | operator= (const WEMPrimitive &)=default |
WEMPrimitive & | operator= (WEMPrimitive &&p) noexcept |
virtual | ~WEMPrimitive ()=default |
Standard destructor. | |
void | resetPrimitive () |
Resets the object to its default constructed state. | |
int | getEntryNumber () const |
Returns the entry number. | |
void | setEntryNumber (int e) |
Sets the entry number. | |
bool | isSet (unsigned int bit) const |
Returns whether the bit-flag is set. | |
void | setFlag (unsigned int bit) |
Sets the given bit-flag. | |
void | unsetFlag (unsigned int bit) |
Unsets the given bit-flag. | |
void | clearFlag () |
Clears the bit-flag. | |
bool | isTraversed () const |
Returns whether this primitive has been traversed. | |
void | setTraversed (bool traversed) |
Sets the traversed flag. | |
int | getHeapPosition () const |
Returns the heap position. | |
bool | inHeap () const |
Returns whether this primitive is in the heap. | |
void | setHeapPosition (int heapPosition) |
Sets the heap position. | |
double | getHeapValue () const |
Returns the heap value. | |
void | setHeapValue (double heapValue) |
Sets the heap value. | |
Additional Inherited Members | |
Protected Attributes inherited from ml::WEMFace | |
Vector3 | _normal |
Normal. | |
WEMBoundingBox | _boundingBox |
Bounding Box. | |
bool | _isBoundingBoxValid |
Is the bounding box valid? | |
Protected Attributes inherited from ml::WEMPrimitive | |
unsigned int | _bitFlag |
Bit-wise flag for custom use. | |
int | _entryNumber |
Entry number in index vector, for easy deletion and reference. | |
int | _heapPosition |
Heap position, same like entryNumber but for heaps. | |
double | _heapValue |
Element value, used for heap sorting. | |
ml::WEMQuad::WEMQuad | ( | ) |
Standard constructor.
|
override |
Standard destructor.
|
overridevirtual |
Computes the normal.
Implements ml::WEMFace.
Returns whether this face contains the given edge.
Implements ml::WEMFace.
Returns whether this face contains the given node.
Implements ml::WEMFace.
|
overridevirtual |
Calculates the area of this face.
Implements ml::WEMFace.
|
overridevirtual |
Returns the geometric centroid of this face.
Implements ml::WEMFace.
Implements ml::WEMFace.
Returns the node at the given index in this face.
Reimplemented from ml::WEMFace.
Definition at line 69 of file WEMQuad.h.
References getEdgeAt().
Referenced by getEdgeAt().
Returns the node at the given index in this face.
Reimplemented from ml::WEMFace.
Returns the edge not containing given node.
Implements ml::WEMFace.
Returns the edge not containing given node.
Implements ml::WEMFace.
Returns the index of the given node.
Implements ml::WEMFace.
Returns the index of the given node.
Implements ml::WEMFace.
Returns the node at the given index in this face.
Implements ml::WEMFace.
Definition at line 48 of file WEMQuad.h.
References getNodeAt().
Referenced by getNodeAt().
Returns the node at the given index in this face.
Implements ml::WEMFace.
Returns the position of a node at the given index.
Implements ml::WEMFace.
Returns the edge incident to this face that is not given as a parameter.
Implements ml::WEMFace.
Returns the edge incident to this face that is not given as a parameter.
Implements ml::WEMFace.
Returns the node incident to this face that is not given as a parameter.
Implements ml::WEMFace.
Returns the node incident to this face that is not given as a parameter.
Implements ml::WEMFace.
|
overridevirtual |
Calculates the perimeter of this face.
Implements ml::WEMFace.
|
overridevirtual |
Calculates the quality of face.
The quality of a triangle is defined as the ratio of the square root of its surface area to its perimeter relative to this same ratio for an equilateral triangle with the same area. The quality is then one for an equilateral triangle and tends to zero for a very stretched triangle.
Implements ml::WEMFace.
|
overridevirtual |
Checks whether this face a concave polygon.
Returns the number of concavities.
Implements ml::WEMFace.
|
overridevirtual |
Mirrors this face. Note that edge information gets corrupted! Use WEM::buildEdgeConnectivity afterwards!
Implements ml::WEMFace.
|
overridevirtual |
Removes all edge pointers of this face.
Implements ml::WEMFace.
Replaces the given orig edge by the given replace edge.
Implements ml::WEMFace.
Replaces the given orig node by the given replace node.
Implements ml::WEMFace.
void ml::WEMQuad::reset | ( | ) |
Sets the given edge to the given index in this face.
Reimplemented from ml::WEMFace.
|
inlinevirtual |
Sets the given edges.
Definition at line 73 of file WEMQuad.h.
References ml::WEMFace::invalidateBoundingBox(), and mlrange_cast().
Sets the given node to the given index in this face.
Reimplemented from ml::WEMFace.
Definition at line 50 of file WEMQuad.h.
References ml::WEMFace::invalidateBoundingBox().
|
inlinevirtual |
Sets the given nodes.
Definition at line 52 of file WEMQuad.h.
References ml::WEMFace::invalidateBoundingBox(), and mlrange_cast().