Example #1
0
PointSetStyle PointSets::measureStyle(QString name)
{
  PointSet* pointSet = findMeasure(name);
  ASSERT_ENGAUGE(pointSet != 0);
  return pointSet->style();
}
Example #2
0
PointSetStyle PointSets::curveStyle(QString name)
{
  PointSet* pointSet = findCurve(name);
  ASSERT_ENGAUGE(pointSet != 0);
  return pointSet->style();
}