Brief description of class still missing. More...
#include <RefractionLine.h>
Public Member Functions | |
| virtual void | append () |
| virtual void | clear () |
| virtual AbstractLine * | clone () const |
| virtual int | count () const |
| const RefractionCurve & | curve () const |
| RefractionCurve & | curve () |
| virtual void | insert (int index) |
| virtual bool | isValid (int index) const |
| void | operator= (const RefractionLine &o) |
| virtual Point | point (int index, const CurvePointOptions *) const |
| virtual void | removeLast () |
| void | setCurve (const RefractionCurve &curve) |
| virtual void | setValid (int index, bool v) |
| virtual void | setX (int index, double v) |
| virtual void | setY (int index, double v, const CurvePointOptions *) |
| virtual void | setZ (int index, double v, const CurvePointOptions *) |
| virtual const QString & | xml_tagName () const |
Static Public Attributes | |
| static const QString | xmlRefractionLineTag = "RefractionLine" |
Protected Attributes | |
| RefractionCurve | _curve |
Brief description of class still missing.
Full description of class still missing
| virtual void QGpGuiWave::RefractionLine::append | ( | ) | [inline, virtual] |
Implements SciFigs::AbstractLine.
{_curve.append(FactoryPoint());}
| virtual void QGpGuiWave::RefractionLine::clear | ( | ) | [inline, virtual] |
Implements SciFigs::AbstractLine.
| AbstractLine * QGpGuiWave::RefractionLine::clone | ( | ) | const [virtual] |
Implements SciFigs::AbstractLine.
{
RefractionLine * l=new RefractionLine;
*l=*this;
return l;
}
| virtual int QGpGuiWave::RefractionLine::count | ( | ) | const [inline, virtual] |
Implements SciFigs::AbstractLine.
| const RefractionCurve& QGpGuiWave::RefractionLine::curve | ( | ) | const [inline] |
{return _curve;}
| RefractionCurve& QGpGuiWave::RefractionLine::curve | ( | ) | [inline] |
{return _curve;}
| virtual void QGpGuiWave::RefractionLine::insert | ( | int | index | ) | [inline, virtual] |
Implements SciFigs::AbstractLine.
{_curve.insert(index, FactoryPoint());}
| virtual bool QGpGuiWave::RefractionLine::isValid | ( | int | index | ) | const [inline, virtual] |
Reimplemented from SciFigs::AbstractLine.
{return _curve[index].isValid();}
| void QGpGuiWave::RefractionLine::operator= | ( | const RefractionLine & | o | ) |
References _curve.
{
_curve=o._curve;
AbstractLine::operator=(o);
}
| Point QGpGuiWave::RefractionLine::point | ( | int | index, |
| const CurvePointOptions * | |||
| ) | const [virtual] |
Implements SciFigs::AbstractLine.
References _curve, QGpCoreTools::Curve< pointType >::at(), QGpCoreTools::StatisticalValue< numberType >::mean(), QGpCoreTools::Point2D::setX(), QGpCoreTools::Point2D::setY(), QGpCoreTools::Point::setZ(), QGpCoreTools::StatisticalValue< numberType >::stddev(), TRACE, and QGpCoreTools::StatisticalPoint< numberType >::x().
| virtual void QGpGuiWave::RefractionLine::removeLast | ( | ) | [inline, virtual] |
Implements SciFigs::AbstractLine.
| void QGpGuiWave::RefractionLine::setCurve | ( | const RefractionCurve & | curve | ) | [inline] |
Referenced by RefractionTargetWidget::addCurve().
| virtual void QGpGuiWave::RefractionLine::setValid | ( | int | index, |
| bool | v | ||
| ) | [inline, virtual] |
Reimplemented from SciFigs::AbstractLine.
| virtual void QGpGuiWave::RefractionLine::setX | ( | int | index, |
| double | v | ||
| ) | [inline, virtual] |
Implements SciFigs::AbstractLine.
{_curve[index].setX(v);}
| virtual void QGpGuiWave::RefractionLine::setY | ( | int | index, |
| double | v, | ||
| const CurvePointOptions * | |||
| ) | [inline, virtual] |
Implements SciFigs::AbstractLine.
{_curve[index].setMean(v);}
| virtual void QGpGuiWave::RefractionLine::setZ | ( | int | index, |
| double | v, | ||
| const CurvePointOptions * | |||
| ) | [inline, virtual] |
Implements SciFigs::AbstractLine.
{_curve[index].setStddev(v);}
| virtual const QString& QGpGuiWave::RefractionLine::xml_tagName | ( | ) | const [inline, virtual] |
Reimplemented from SciFigs::AbstractLine.
{return xmlRefractionLineTag;}
RefractionCurve QGpGuiWave::RefractionLine::_curve [protected] |
Referenced by operator=(), and point().
const QString QGpGuiWave::RefractionLine::xmlRefractionLineTag = "RefractionLine" [static] |