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