All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines
Brief description of class still missing. More...
#include <PointNDOptions.h>
Public Member Functions | |
void | fromDouble (PointND &p, double v) const |
int | index () const |
PointNDOptions (int index) | |
PointNDOptions (const PointNDOptions &o) | |
void | setIndex (int index) |
double | toDouble (const PointND &p) const |
Brief description of class still missing.
Full description of class still missing
QGpCoreTools::PointNDOptions::PointNDOptions | ( | int | index | ) | [inline] |
{_index=index;}
QGpCoreTools::PointNDOptions::PointNDOptions | ( | const PointNDOptions & | o | ) | [inline] |
: CurvePointOptions() {_index=o._index;}
void QGpCoreTools::PointNDOptions::fromDouble | ( | PointND & | p, |
double | v | ||
) | const [inline] |
References QGpCoreTools::PointND::setY().
Referenced by QGpCoreTools::PointND::setY().
{if(this) p.setY(_index, v); else p.setY(0, v);}
int QGpCoreTools::PointNDOptions::index | ( | ) | const [inline] |
{return _index;}
void QGpCoreTools::PointNDOptions::setIndex | ( | int | index | ) | [inline] |
{_index=index;}
double QGpCoreTools::PointNDOptions::toDouble | ( | const PointND & | p | ) | const [inline] |
References QGpCoreTools::PointND::y().
Referenced by QGpCoreTools::PointND::y().
{if(this) return p.y(_index); else return p.y(0);}