Public Member Functions | |
void | setPos (double x, double y) |
QwtDoublePoint | pos () const |
void | setX (double x) |
void | setY (double y) |
void | setZ (double z) |
double | x () const |
double | y () const |
double | z () const |
Definition at line 12 of file qwt_raster_data.cpp.
QwtDoublePoint QwtRasterData::Contour3DPoint::pos | ( | ) | const [inline] |
Definition at line 21 of file qwt_raster_data.cpp.
Referenced by QwtRasterData::ContourPlane::intersect().
{ return QwtDoublePoint(d_x, d_y); }
void QwtRasterData::Contour3DPoint::setPos | ( | double | x, |
double | y | ||
) | [inline] |
Definition at line 15 of file qwt_raster_data.cpp.
Referenced by QwtRasterData::contourLines().
void QwtRasterData::Contour3DPoint::setX | ( | double | x ) | [inline] |
void QwtRasterData::Contour3DPoint::setY | ( | double | y ) | [inline] |
void QwtRasterData::Contour3DPoint::setZ | ( | double | z ) | [inline] |
Definition at line 28 of file qwt_raster_data.cpp.
References z().
Referenced by QwtRasterData::contourLines().
{ d_z = z; }
double QwtRasterData::Contour3DPoint::x | ( | ) | const [inline] |
Definition at line 30 of file qwt_raster_data.cpp.
Referenced by setPos(), and setX().
{ return d_x; }
double QwtRasterData::Contour3DPoint::y | ( | ) | const [inline] |
Definition at line 31 of file qwt_raster_data.cpp.
Referenced by setPos(), and setY().
{ return d_y; }
double QwtRasterData::Contour3DPoint::z | ( | ) | const [inline] |
Definition at line 32 of file qwt_raster_data.cpp.
Referenced by QwtRasterData::contourLines(), and setZ().
{ return d_z; }