#include <box.h>
Inheritance diagram for VIEW::Box:

Public Member Functions | |
Constructors | |
| Box () throw () | |
| Default Constructor. | |
| Box (const Box &box) throw () | |
| Copy constructor with cloning facility. | |
| Box (const Vector3 &point, const Vector3 &right_vector=Vector3(0, 1, 0), const Vector3 &height_vector=Vector3(-1, 0, 0), float depth=1) throw () | |
Destructors | |
| virtual | ~Box () throw () |
| Destructor. | |
| virtual void | clear () throw () |
| Explicit default initialization. | |
Assignment methods | |
| void | set (const Box &box) throw () |
| Assignment. | |
| const Box & | operator= (const Box &box) throw () |
| Assignment operator. | |
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 this class represents an instance of the geometric representation of a threedimensional box. The class Box is derived from the classes GeometricObject and Box3. See these classes for further information concerning interface and additional methods.
|
|
Default Constructor. |
|
|
Copy constructor with cloning facility.
|
|
|
Destructor.
|
|
|
Explicit default initialization. Calls GeometricObject::clear Calls Box3::clear Reimplemented from VIEW::GeometricObject. |
|
||||||||||||
|
Internal value dump. Dump the current value of this Box to the output ostream s with dumping depth depth. Calls GeometricObject::dump. Calls Box3::dump.
Reimplemented from VIEW::GeometricObject. |
|
|
Internal state and consistency self-validation.
Initiate self-validation of the internal state and data structure consistencies of this Box. If the internal state of this Box is correct (self-validated) and consistent
Reimplemented from VIEW::GeometricObject. |
|
|
Assignment operator.
|
|
|
Assignment.
|