|
|
| Tube () |
|
| Tube (const Tube &tube) |
|
|
virtual | ~Tube () |
|
virtual void | clear () |
|
|
void | set (const Tube &tube) |
|
const Tube & | operator= (const Tube &tube) |
|
void | swap (Tube &tube) |
|
|
float | getLength () const |
|
float | getSquareLength () const |
|
|
virtual bool | isValid () const |
|
virtual void | dump (std::ostream &s=std::cout, Size depth=0) const |
|
virtual void | getVertices (vector< Vector3 > &vertices) const |
|
|
float | getRadius () const |
|
void | setRadius (float radius) |
|
| GeometricObject () |
|
| GeometricObject (const GeometricObject &object) |
|
virtual | ~GeometricObject () |
|
void | set (const GeometricObject &object) |
|
GeometricObject & | operator= (const GeometricObject &object) |
|
void | swap (GeometricObject &object) |
|
void | setComposite (const Composite *composite) |
|
const Composite * | getComposite () const |
|
void | setColor (const ColorRGBA &color) |
|
void | setColor (const ColorUnit &red, const ColorUnit &green, const ColorUnit &blue, const ColorUnit &alpha=(float) 1) |
|
const ColorRGBA & | getColor () const |
|
ColorRGBA & | getColor () |
|
void | getColor (ColorUnit &red, ColorUnit &green, ColorUnit &blue, ColorUnit &alpha) const |
|
void | getColors (HashSet< String > &colors) |
| Insert the colors of this object into the hashset. More...
|
|
bool | operator== (const GeometricObject &object) const |
| Needed for MSVC. More...
|
|
bool | operator< (const GeometricObject &object) const |
| Needed for MSVC. More...
|
|
| Vertex2 () |
|
| Vertex2 (const Vertex2 &vertex) |
|
virtual | ~Vertex2 () |
|
void | set (const Vertex2 &vertex) |
|
const Vertex2 & | operator= (const Vertex2 &vertex) |
|
void | swap (Vertex2 &vertex) |
|
void | setVertex1 (const Vector3 &v) |
|
void | setVertex1 (const float x, const float y, const float z) |
|
Vector3 & | getVertex1 () |
|
const Vector3 & | getVertex1 () const |
|
void | getVertex1 (Vector3 &v) const |
|
void | getVertex1 (float &x, float &y, float &z) const |
|
void | setVertex1Address (const Vector3 &v) |
|
void | setDefaultVertex1Address () |
|
Vector3 * | getVertex1Address () const |
|
void | setVertex2 (const Vector3 &v) |
|
void | setVertex2 (const float x, const float y, const float z) |
|
Vector3 & | getVertex2 () |
|
const Vector3 & | getVertex2 () const |
|
void | getVertex2 (Vector3 &v) const |
|
void | getVertex2 (float &x, float &y, float &z) const |
|
void | setVertex2Address (const Vector3 &v) |
|
void | setDefaultVertex2Address () |
|
Vector3 * | getVertex2Address () const |
|
void | setVertices (const Vector3 &vertex1, const Vector3 &vertex2) |
|
void | setVertices (const float vertex1_x, const float vertex1_y, const float vertex1_z, const float vertex2_x, const float vertex2_y, const float vertex2_z) |
|
void | setVertexAddresses (const Vector3 &vertex1, const Vector3 &vertex2) |
|
void | getVertices (Vector3 &vertex1, Vector3 &vertex2) |
|
void | getVertices (float &vertex1_x, float &vertex1_y, float &vertex1_z, float &vertex2_x, float &vertex2_y, float &vertex2_z) |
|
void | setDefaultVertexAddresses () |
|
bool | isDefaultVertex1Address () const |
|
bool | isDefaultVertex2Address () const |
|
bool | isDefaultVertexAddresses () const |
|
Tube class. An instance of Tube represents an instance of the geometric representation "tube". A tube has the following properties.
- color - the color of the tube
- radius - the radius of the tube
- vertex1 - the first vertex of the tube
- vertex2 - the second vertex of the tube
- The class Tube is derived from the classes GeometricObject Radius and Vertex2. See these classes for further information concerning interface and additional methods.
Definition at line 37 of file tube.h.