BALL  1.4.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members
BALL::VIEW::Line Class Reference

#include <BALL/VIEW/PRIMITIVES/line.h>

Inheritance diagram for BALL::VIEW::Line:
BALL::VIEW::GeometricObject BALL::VIEW::Vertex2

Public Member Functions

Constructors
 Line ()
 
 Line (const Line &line)
 
Destructors
virtual ~Line ()
 
virtual void clear ()
 
Assignment methods
void set (const Line &line)
 
const Lineoperator= (const Line &line)
 
void swap (Line &line)
 
debuggers and diagnostics
virtual bool isValid () const
 
virtual void dump (std::ostream &s=std::cout, Size depth=0) const
 
virtual void getVertices (vector< Vector3 > &vertices) const
 
- Public Member Functions inherited from BALL::VIEW::GeometricObject
 GeometricObject ()
 
 GeometricObject (const GeometricObject &object)
 
virtual ~GeometricObject ()
 
void set (const GeometricObject &object)
 
GeometricObjectoperator= (const GeometricObject &object)
 
void swap (GeometricObject &object)
 
void setComposite (const Composite *composite)
 
const CompositegetComposite () const
 
void setColor (const ColorRGBA &color)
 
void setColor (const ColorUnit &red, const ColorUnit &green, const ColorUnit &blue, const ColorUnit &alpha=(float) 1)
 
const ColorRGBAgetColor () const
 
ColorRGBAgetColor ()
 
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...
 
- Public Member Functions inherited from BALL::VIEW::Vertex2
 Vertex2 ()
 
 Vertex2 (const Vertex2 &vertex)
 
virtual ~Vertex2 ()
 
void set (const Vertex2 &vertex)
 
const Vertex2operator= (const Vertex2 &vertex)
 
void swap (Vertex2 &vertex)
 
void setVertex1 (const Vector3 &v)
 
void setVertex1 (const float x, const float y, const float z)
 
Vector3getVertex1 ()
 
const Vector3getVertex1 () const
 
void getVertex1 (Vector3 &v) const
 
void getVertex1 (float &x, float &y, float &z) const
 
void setVertex1Address (const Vector3 &v)
 
void setDefaultVertex1Address ()
 
Vector3getVertex1Address () const
 
void setVertex2 (const Vector3 &v)
 
void setVertex2 (const float x, const float y, const float z)
 
Vector3getVertex2 ()
 
const Vector3getVertex2 () const
 
void getVertex2 (Vector3 &v) const
 
void getVertex2 (float &x, float &y, float &z) const
 
void setVertex2Address (const Vector3 &v)
 
void setDefaultVertex2Address ()
 
Vector3getVertex2Address () 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
 

Detailed Description

Line class. An instance of Line represents an instance of the geometric representation "line". A line has the following properties.

Definition at line 35 of file line.h.

Constructor & Destructor Documentation

BALL::VIEW::Line::Line ( )

Default Constructor. Construct new line. The properties of this line are set to:

  • color - to the color black
  • vertex1 - to the vector (0,0,0)
  • vertex2 - to the vector (0,0,0)
    Returns
    Line new constructed line
    See Also
    GeometricObject
    Vertex2
BALL::VIEW::Line::Line ( const Line line)

Copy constructor with cloning facility.

See Also
GeometricObject
Vertex2
virtual BALL::VIEW::Line::~Line ( )
virtual

Destructor

Member Function Documentation

virtual void BALL::VIEW::Line::clear ( )
virtual

Explicit default initialization. Calls GeometricObject::clear. Calls Vertex2::clear.

See Also
GeometricObject::clear
Vertex2::clear

Reimplemented from BALL::VIEW::Vertex2.

virtual void BALL::VIEW::Line::dump ( std::ostream &  s = std::cout,
Size  depth = 0 
) const
virtual

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.

Parameters
soutput stream where to output the value of this line
depththe dumping depth
See Also
GeometricObject::dump
Vertex2::dump

Reimplemented from BALL::VIEW::Vertex2.

virtual void BALL::VIEW::Line::getVertices ( vector< Vector3 > &  vertices) const
virtual

Reimplemented from BALL::VIEW::GeometricObject.

virtual bool BALL::VIEW::Line::isValid ( ) const
virtual

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 true is returned, false otherwise. Calls GeometricObject::isValid. Calls Vertex2::isValid.

Returns
bool true if the internal state of this line is correct (self-validated) and consistent, false otherwise
See Also
GeometricObject::isValid
Vertex2::isValid

Reimplemented from BALL::VIEW::Vertex2.

const Line& BALL::VIEW::Line::operator= ( const Line line)

Assignment operator. Calls set.

void BALL::VIEW::Line::set ( const Line line)

Assign the line line to this line. the line line.

void BALL::VIEW::Line::swap ( Line line)

Swapping of line's. Swap the value of this line with the line line.

Parameters
linethe line being swapped with this line
See Also
Line