#include <itkFEMElementBase.h>
Inheritance diagram for itk::fem::Element::Node:


A node can define a point in space and can hold an arbitrary number of coordinates and the DOFs. Since the only classes that use nodes are the elements, the node class is defined within an element base class.
Definition at line 137 of file itkFEMElementBase.h.
Public Types | |
| typedef FEMPArray< Self > | ArrayType |
| typedef Self | Baseclass |
| typedef const Self * | ConstPointer |
| typedef double | Float |
| typedef Self * | Pointer |
| typedef Node | Self |
| typedef std::set< Element * > | SetOfElements |
| typedef FEMLightObject | Superclass |
Public Member Functions | |
| virtual int | ClassID () const |
| virtual void | ClearDegreesOfFreedom (void) const |
| virtual Baseclass::Pointer | Clone () const |
| const VectorType & | GetCoordinates (void) const |
| *Get DOF IDs associated with this node *DegreeOfFreedomIDType | GetDegreeOfFreedom (unsigned int i) const |
| Node (Float x, Float y, Float z) | |
| Node (Float x, Float y) | |
| Node () | |
| virtual void | Read (std::istream &f, void *info) |
| void | SetCoordinates (const VectorType &coords) |
| *Set DOF IDs associated with this node *void | SetDegreeOfFreedom (unsigned int i, DegreeOfFreedomIDType dof) const |
| virtual void | Write (std::ostream &f) const |
Static Public Member Functions | |
| static FEMLightObject::Pointer | CreateFromStream (std::istream &f, void *info) |
| static Self::Pointer | New () |
| static void | SkipWhiteSpace (std::istream &f) |
Public Attributes | |
| int | GN |
| SetOfElements | m_elements |
Static Public Attributes | |
| static const int | CLID |
| static const std::string | whitespaces |
|
|
Array class that holds special pointers to the nodes. Definition at line 150 of file itkFEMElementBase.h. |
|
|
Store the base class typedef for easy access from derived classes. FEM_CLASS macro also expects this for the FEMOF... Definition at line 67 of file itkFEMLightObject.h. |
|
|
Const pointer or SmartPointer to an object. Reimplemented from itk::fem::FEMLightObject. Definition at line 139 of file itkFEMElementBase.h. |
|
|
Floating point precision type. Definition at line 145 of file itkFEMElementBase.h. |
|
|
Pointer or SmartPointer to an object. Reimplemented from itk::fem::FEMLightObject. Definition at line 139 of file itkFEMElementBase.h. |
|
|
Standard Self typedef. Reimplemented from itk::fem::FEMLightObject. Definition at line 139 of file itkFEMElementBase.h. |
|
|
List of pointers to elements that use this node. External code is responsible for maintaining the list. Definition at line 225 of file itkFEMElementBase.h. |
|
|
Standard Superclass typedef. Reimplemented from itk::fem::FEMLightObject. Definition at line 139 of file itkFEMElementBase.h. |
|
|
Default constructor Definition at line 165 of file itkFEMElementBase.h. |
|
||||||||||||
|
Create 2D node. Definition at line 170 of file itkFEMElementBase.h. |
|
||||||||||||||||
|
Create 3D node. Definition at line 176 of file itkFEMElementBase.h. |
|
|
Virtual function to access the class ID Implements itk::fem::FEMLightObject. Definition at line 139 of file itkFEMElementBase.h. |
|
|
Definition at line 212 of file itkFEMElementBase.h. |
|
|
Create a new object from the existing one Implements itk::fem::FEMLightObject. |
|
||||||||||||
|
Read object of any derived type from stream. This static function creates an object of a class, which is derived from FEMLightObject. The class of object is first determined from the stream, then the object of that class is constructed using the FEMObjectFactory. Finally the data for this object is read from the stream, by calling the Read() member function. |
|
|
Return a reference to a vector that contains coordinates of this node. Definition at line 183 of file itkFEMElementBase.h. |
|
|
Definition at line 195 of file itkFEMElementBase.h. References itk::fem::Element::InvalidDegreeOfFreedomID. |
|
|
Object creation in an itk compatible way Definition at line 139 of file itkFEMElementBase.h. |
|
||||||||||||
|
Read an object data from input stream. Call this member to initialize the data members in the current object by reading data from provided input stream. Derived classes should first call the the parent's read function, to initialize the data from parent. Note that you must manually create the object of desired type using the FEMObjectFactory before you can call read function (this is pretty obvious). In this class only the global number is read from file. Derived classes may require some additional info in order to perform the reading. Pack this info in an object and pass a pointer to it in the info parameter. If you need runtime typechecking, use a polymorphic class and dynamic_cast operator inside the implementation of Read. Reimplemented from itk::fem::FEMLightObject. |
|
|
Set coordinates of a node. Definition at line 189 of file itkFEMElementBase.h. |
|
||||||||||||
|
Definition at line 205 of file itkFEMElementBase.h. References itk::fem::Element::InvalidDegreeOfFreedomID. |
|
|
Helper function that skips all the whitespace and comments in an input stream. |
|
|
Write an object to the output stream. Call this member to write the data members in the current object to the output stream. Here we also need to know which derived class we actually are, so that we can write the class name. The class name is obtained by calling the virtual ClassID() member function and passing the result to the FEMObjectFactory. Implementations of Write member funtion in derived classes should first call the parent's implementation of Write and finaly write whatever they need. Reimplemented from itk::fem::FEMLightObject. |
|
|
Class ID for FEM object factory Definition at line 139 of file itkFEMElementBase.h. |
|
|
Global number of an object (ID of an object) In general the ID's are required to be unique only within a specific type of derived classes (Elements, Nodes, ...) If the GN is not required, it can be ignored. (normally you need the GN when writing or reading objects to/from stream. Definition at line 168 of file itkFEMLightObject.h. Referenced by itk::fem::FEMLightObject::FEMLightObject(). |
|
|
Definition at line 226 of file itkFEMElementBase.h. |
|
|
Const string of all whitespace characters. This string is used by SkipWhiteSpace function. Definition at line 138 of file itkFEMLightObject.h. |
1.4.2 written by Dimitri van Heesch,
© 1997-2000