#include <line.h>
Inheritance diagram for VIEW::Line:
Public Member Functions | |
Constructors | |
Line () throw () | |
Default Constructor. | |
Line (const Line &line) throw () | |
Copy constructor with cloning facility. | |
Destructors | |
virtual | ~Line () throw () |
Destructor. | |
virtual void | clear () throw () |
Explicit default initialization. | |
Assignment methods | |
void | set (const Line &line) throw () |
Assign the line line to this line. | |
const Line & | operator= (const Line &line) throw () |
Assignment operator. | |
void | swap (Line &line) throw () |
Swapping of line'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 Line represents an instance of the geometric representation "line". A line has the following properties.
|
Default Constructor. Construct new line. The properties of this line are set to:
|
|
Copy constructor with cloning facility.
|
|
Explicit default initialization. Calls GeometricObject::clear. Calls Vertex2::clear.
Reimplemented from VIEW::Vertex2. |
|
Internal value dump. Dump the current value of this line to the output ostream s with dumping depth depth. Calls GeometricObject::dump. Calls Vertex2::dump.
Reimplemented from VIEW::Vertex2. |
|
Internal state and consistency self-validation.
Initiate self-validation of the internal state and data structure consistencies of this line. If the internal state of this line is correct (self-validated) and consistent
Reimplemented from VIEW::Vertex2. |
|
Assignment operator. Calls set. |
|
Assign the line line to this line. the line line. |
|
Swapping of line's. Swap the value of this line with the line line.
|