#include <point.h>
Inheritance diagram for VIEW::Point:
Public Member Functions | |
Constructors | |
Point () throw () | |
Default Constructor. | |
Point (const Point &point) throw () | |
Copy constructor. | |
Destructors | |
virtual | ~Point () throw () |
Destructor. | |
virtual void | clear () throw () |
Explicit default initialization. | |
Assignment methods | |
void | set (const Point &point) throw () |
Assignment. | |
const Point & | operator= (const Point &point) throw () |
Assignment operator. | |
void | swap (Point &point) throw () |
Swapping of point's. | |
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. | |
virtual void | getVertices (vector< Vector3 > &vertices) const |
An instance of Point represents an instance of the geometric representation "point". A point has the following properties.
|
Default Constructor. The properties of this point are set to:
|
|
Destructor.
|
|
Explicit default initialization. Calls GeometricObject::clear Calls Vertex::clear Reimplemented from VIEW::Vertex. |
|
Internal value dump. Dump the current value of this point to the output ostream s with dumping depth depth. Calls GeometricObject::dump. Calls Vertex::dump.
Reimplemented from VIEW::Vertex. |
|
Internal state and consistency self-validation.
Reimplemented from VIEW::Vertex. |
|
Assignment operator. Calls set. |
|
Assignment.
|
|
Swapping of point's. Swap the value of this point with the point point.
|