#include <twoColoredLine.h>
Public Member Functions |
|
Constructors
|
|
TwoColoredLine () | |
Default Constructor. |
|
TwoColoredLine (const TwoColoredLine &two_colored_line) | |
Copy constructor with cloning
facility. |
|
Destructors
|
|
virtual | ~TwoColoredLine () |
Destructor. |
|
virtual void | clear () |
Explicit default initialization.
|
|
Assignment methods
|
|
void | set (const TwoColoredLine &two_colored_line) |
Assignment. |
|
const TwoColoredLine & | operator= (const TwoColoredLine &two_colored_line) |
Assignment operator. |
|
void | swap (TwoColoredLine &two_colored_line) |
Swapping of
two_colored_line's. |
|
Accessors: inspectors and mutators
|
|
Vector3 | getMiddleVertex () const |
Inspection of the middle vector.
|
|
debuggers and diagnostics
|
|
virtual bool | isValid () const |
Internal state and consistency
self-validation. |
|
virtual void | dump (std::ostream &s=std::cout, Size depth=0) const |
Internal value dump. |
|
virtual void | getVertices (vector< Vector3 > &vertices) const |
An instance of TwoColoredLine represents an instance of the geometric representation of a two colored "line". A twoColoredLine has the following properties.
BALL::VIEW::TwoColoredLine::TwoColoredLine | ( | ) |
Default Constructor.
Construct new twoColoredLine. The properties of this twoColoredLine are set to:
BALL::VIEW::TwoColoredLine::TwoColoredLine | ( | const TwoColoredLine & | two_colored_line | ) |
Copy constructor with cloning facility.
virtual BALL::VIEW::TwoColoredLine::~TwoColoredLine | ( | ) | [virtual] |
Destructor.
Default destruction of this twoColoredLine.
virtual void BALL::VIEW::TwoColoredLine::clear | ( | ) | [virtual] |
Explicit default initialization.
Calls GeometricObject::clear. Calls ColorExtension2::clear. Calls Vertex2::clear.
Reimplemented from BALL::VIEW::ColorExtension2.
virtual void BALL::VIEW::TwoColoredLine::dump | ( | std::ostream & | s =
std::cout , |
|
Size | depth =
0 |
|||
) | const [virtual] |
Internal value dump.
Dump the current value of this twoColoredLine to the output ostream s with dumping depth depth. Calls GeometricObject::dump. Calls ColorExtension2::dump. Calls Vertex2::dump.
s | output stream where to output the value of this twoColoredLine | |
depth | the dumping depth |
Reimplemented from BALL::VIEW::ColorExtension2.
Vector3 BALL::VIEW::TwoColoredLine::getMiddleVertex | ( | ) | const |
Inspection of the middle vector.
Access the geometric middle vertex between vertex1 and vertex2 of this twoColoredLine.
virtual bool BALL::VIEW::TwoColoredLine::isValid | ( | ) | const [virtual] |
Internal state and consistency self-validation.
Initiate self-validation of the internal state and data
structure consistencies of this twoColoredLine. If the
internal state of this twoColoredLine is correct
(self-validated) and consistent true
is
returned, false
otherwise. Calls {GeometricObject::isValid}.
true
if the internal state of this
twoColoredLine is correctReimplemented from BALL::VIEW::Vertex2.
const TwoColoredLine& BALL::VIEW::TwoColoredLine::operator= | ( | const TwoColoredLine & | two_colored_line | ) |
Assignment operator.
Calls set.
void BALL::VIEW::TwoColoredLine::set | ( | const TwoColoredLine & | two_colored_line | ) |
Assignment.
Calls GeometricObject::set. Calls ColorExtension2::set. Calls Vertex2::set.