|
inlib
1.2.0
|


Public Member Functions | |
| virtual void * | cast (const std::string &a_class) const |
| virtual | ~points2D () |
| virtual float | x_axis_min () const =0 |
| virtual float | x_axis_max () const =0 |
| virtual float | y_axis_min () const =0 |
| virtual float | y_axis_max () const =0 |
| virtual unsigned int | points () const =0 |
| virtual bool | ith_point (unsigned int, float &, float &) const =0 |
Static Public Member Functions | |
| static const std::string & | s_class () |
| virtual inlib::sg::points2D::~points2D | ( | ) | [inline, virtual] |
| virtual void* inlib::sg::points2D::cast | ( | const std::string & | a_class | ) | const [inline, virtual] |
Reimplemented from inlib::sg::plottable.
Definition at line 166 of file plottable.
{
if(void* p = inlib::cmp_cast<points2D>(this,a_class)) {return p;}
return plottable::cast(a_class);
}
| virtual bool inlib::sg::points2D::ith_point | ( | unsigned | int, |
| float & | , | ||
| float & | |||
| ) | const [pure virtual] |
Implemented in inlib::sg::c2d2plot, and inlib::sg::xy2plot< T >.
| virtual unsigned int inlib::sg::points2D::points | ( | ) | const [pure virtual] |
Implemented in inlib::sg::c2d2plot, and inlib::sg::xy2plot< T >.
| static const std::string& inlib::sg::points2D::s_class | ( | ) | [inline, static] |
Reimplemented from inlib::sg::plottable.
Definition at line 161 of file plottable.
{
static const std::string s_v("inlib::sg::points2D");
return s_v;
}
| virtual float inlib::sg::points2D::x_axis_max | ( | ) | const [pure virtual] |
Implemented in inlib::sg::c2d2plot, and inlib::sg::xy2plot< T >.
| virtual float inlib::sg::points2D::x_axis_min | ( | ) | const [pure virtual] |
Implemented in inlib::sg::c2d2plot, and inlib::sg::xy2plot< T >.
| virtual float inlib::sg::points2D::y_axis_max | ( | ) | const [pure virtual] |
Implemented in inlib::sg::c2d2plot, and inlib::sg::xy2plot< T >.
| virtual float inlib::sg::points2D::y_axis_min | ( | ) | const [pure virtual] |
Implemented in inlib::sg::c2d2plot, and inlib::sg::xy2plot< T >.
1.7.5.1