#include <vertex1.h>
Inheritance diagram for VIEW::Vertex:
Public Member Functions | |
Constructors | |
Vertex () throw () | |
Default Constructor. | |
Vertex (const Vertex &vertex) throw () | |
Copy constructor. | |
Destructors | |
virtual | ~Vertex () throw () |
Destructor. | |
virtual void | clear () throw () |
Explicit default initialization. | |
Assignment methods | |
void | set (const Vertex &v) throw () |
Assignment. | |
const Vertex & | operator= (const Vertex &v) throw () |
Assignment operator. | |
void | swap (Vertex &v) throw () |
Swapping of vertices. | |
Accessors: inspectors and mutators | |
void | setVertex (const Vector3 &v) throw () |
Change the vector of this vertex. | |
void | setVertex (const float x, const float y, const float z) throw () |
Change the vector of this vertex. | |
Vector3 & | getVertex () throw () |
Mutable inspection of the vector of this vertex. | |
const Vector3 & | getVertex () const throw () |
Non-mutable inspection of the vector of this vertex. | |
void | getVertex (Vector3 &v) const throw () |
Inspection of the vector of this vertex. | |
void | getVertex (float &x, float &y, float &z) const throw () |
Access the components of the vector of this vertex by using float. | |
void | setVertexAddress (const Vector3 &v) throw () |
Change the vector address of this vertex to the vector address represented by the parameter v. | |
void | setDefaultVertexAddress () throw () |
Change the vector address of this vertex to the default address. | |
Vector3 * | getVertexAddress () const throw () |
Access the pointer of the vector that contains the value of this vertex. | |
Predicates | |
bool | isDefaultVertexAddress () const throw () |
Vertex address test. | |
debuggers and diagnostics | |
virtual bool | isValid () const throw () |
Internal state and consistency self-validation. | |
virtual void | dump (std::ostream &s=std::cout, Size depth=0) const throw () |
Internal value dump. |
It provides the derived class with methods for accessing that vertex. Further there is the possibility to give an address to a vector Vector3 as vertex. So if the value of that given vector changes the value of this vertex changes as well. To avoid segmentation faults this vector address must be valid as long as this vertex exists.
|
Default Constructor. The vector of this vertex is set to (0.0, 0.0, 0.0). The vertex address is set to the address of the own vector of this vertex. |
|
Copy constructor. The vector of vertex is copied to the vector of this vertex. The vertex address of this vertex is set to the value of the vertex address of vertex vertex. |
|
Destructor.
|
|
Explicit default initialization. Set the vector of this vertex to the vector (0.0, 0.0, 0.0). The vertex address of this vertex is set to the address of the own vector of this vertex. Reimplemented in VIEW::Label, and VIEW::Point. |
|
Internal value dump. Dump the current state of this vertex to the output ostream s with dumping depth depth.
Reimplemented in VIEW::Label, and VIEW::Point. |
|
Access the components of the vector of this vertex by using float.
|
|
Inspection of the vector of this vertex.
|
|
Non-mutable inspection of the vector of this vertex. For further information see getVertex. |
|
Mutable inspection of the vector of this vertex.
|
|
Access the pointer of the vector that contains the value of this vertex.
|
|
Vertex address test. Tests if the vertex address of this vertex points to the vector of this vertex. |
|
Internal state and consistency self-validation. Calls Vector3::isValid Reimplemented in VIEW::Label, and VIEW::Point. |
|
Assignment operator. Calls set. The vector and the vertex address of this vertex is initialized to the vector and the vertex address of the vertex v. |
|
Assignment. The vector and the vertex address of this vertex is initialized to the vector and vertex address of the vertex v. |
|
Change the vector address of this vertex to the default address. This method resets the vertex address to the vector address of this vertex. So the value of the vector of this vertex will no longer be ignored and all access methods will return it again. This method unhooks the object from any other objects prio connected with setVertexAddress.
|
|
Change the vector of this vertex.
|
|
Change the vector of this vertex.
|
|
Change the vector address of this vertex to the vector address represented by the parameter v. If a vector address is given the value of the vector of this vertex is ignored. Instead if the method getVertex (or any other access method) is called the value of the vector given by the vertex address is returned. The vector to which the vertex address points must exist and be valid as long as this vertex exists. An object that uses this method can hook itself onto another object (speaking in terms of position). If the object changes its position so the object derived from this vertex changes its position.
|
|
Swapping of vertices. Swap the vector and vertex address of this vertex with the vector and vertex address of the vertex v. |