1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
|
/*
For more information, please see: http://software.sci.utah.edu
The MIT License
Copyright (c) 2008 Scientific Computing and Imaging Institute,
University of Utah.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
//! File : Q1DTransferFunction.cpp
//! Author : Jens Krueger
//! SCI Institute
//! University of Utah
//! Date : July 2008
//
//! Copyright (C) 2008 SCI Institute
#include <iostream>
#include "Q1DTransferFunction.h"
#include <QtGui/QPainter>
#include <QtGui/QMouseEvent>
#include "../Tuvok/Controller/Controller.h"
#include "../Tuvok/Basics/MathTools.h"
#include "../Tuvok/Renderer/GPUMemMan/GPUMemMan.h"
using namespace std;
Q1DTransferFunction::Q1DTransferFunction(MasterController& masterController, QWidget *parent) :
QTransferFunction(masterController, parent),
m_pTrans(NULL),
m_iPaintMode(PAINT_RED | PAINT_GREEN | PAINT_BLUE | PAINT_ALPHA),
m_iCachedHeight(0),
m_iCachedWidth(0),
m_pBackdropCache(NULL),
m_pPreviewBack(NULL),
m_pPreviewColor(NULL),
// borders, may be changed arbitrarily
m_iLeftBorder(20),
m_iBottomBorder(20),
m_iTopPreviewHeight(30),
m_iTopPreviewDist(10),
// automatically computed borders
m_iRightBorder(0),
m_iTopBorder(0),
// scale apearance, may be changed arbitrarily (except for the marker length wich should be less or equal to both m_iLeftBorder and m_iBottomBorder)
m_iMarkersX(50),
m_iMarkersY(20),
m_iBigMarkerSpacingX(10),
m_iBigMarkerSpacingY(5),
m_iMarkerLength(5),
m_iBigMarkerLength(m_iMarkerLength*3),
// mouse motion
m_iLastIndex(-1),
m_fLastValue(0),
m_bMouseLeft(false),
m_bMouseRight(false)
{
SetColor(isEnabled());
}
Q1DTransferFunction::~Q1DTransferFunction(void)
{
// delete the backdrop cache pixmap
delete m_pBackdropCache;
delete m_pPreviewBack;
delete m_pPreviewColor;
}
void Q1DTransferFunction::PreparePreviewData() {
delete m_pPreviewColor;
m_pPreviewColor = new QImage(int(m_vHistogram.GetSize()),1, QImage::Format_ARGB32);
m_bBackdropCacheUptodate = false;
}
void Q1DTransferFunction::SetData(const Histogram1D* vHistogram,
unsigned int iMaxValue,
TransferFunction1D* pTrans) {
m_pTrans = pTrans;
if (m_pTrans == NULL || vHistogram == NULL) return;
m_iMarkersX = iMaxValue;
while (m_iMarkersX > 100) m_iMarkersX /= 10;
// resize internal histogram, we only consider histogram values to the maximum entry that is non-zero
m_vHistogram.Resize(vHistogram->GetFilledSize());
// resize the preview bar and force the draw routine to recompute the backdrop cache
PreparePreviewData();
// if the histogram is empty we are done
if (m_vHistogram.GetSize() == 0) return;
// rescale the histogram to the [0..1] range
// first find min and max ...
unsigned int iMax = vHistogram->GetLinear(0);
unsigned int iMin = iMax;
for (size_t i = 0;i<m_vHistogram.GetSize();i++) {
unsigned int iVal = vHistogram->GetLinear(i);
if (iVal > iMax) iMax = iVal;
if (iVal < iMin) iMin = iVal;
}
// ... than rescale
float fDiff = float(iMax)-float(iMin);
for (size_t i = 0;i<m_vHistogram.GetSize();i++)
m_vHistogram.SetLinear(i, (float(vHistogram->GetLinear(i)) - float(iMin)) / fDiff);
}
void Q1DTransferFunction::DrawCoordinateSystem(QPainter& painter) {
unsigned int iReducedLeftBorder = m_iLeftBorder - 2;
// adjust left and bottom border so that the marker count can be met
unsigned int iReducedRightBorder = (width()-(iReducedLeftBorder+2)) %m_iMarkersX;
m_iTopBorder = (height()-(m_iBottomBorder+2+m_iTopPreviewHeight+m_iTopPreviewDist)) %m_iMarkersY + m_iTopPreviewHeight+m_iTopPreviewDist;
// compute the actual marker spaceing
unsigned int iMarkerSpacingX = (width()-(iReducedLeftBorder+2))/m_iMarkersX;
unsigned int iMarkerSpacingY = (height()-(m_iBottomBorder+2+m_iTopBorder))/m_iMarkersY;
// draw background
painter.setBrush(m_colorBack);
QRect backRect(0,0,width(),height());
painter.drawRect(backRect);
// draw grid borders
QPen borderPen(m_colorBorder, 1, Qt::SolidLine);
painter.setPen(borderPen);
QRect borderRect(iReducedLeftBorder, m_iTopBorder, width()-(iReducedLeftBorder+2+iReducedRightBorder), height()-(m_iTopBorder+m_iBottomBorder+2));
painter.drawRect(borderRect);
// draw Y axis markers
QPen penScale(m_colorScale, 1, Qt::SolidLine);
QPen penLargeScale(m_colorLargeScale, 1, Qt::SolidLine);
for (unsigned int i = 0;i<m_iMarkersY;i++) {
int iPosY = height()-m_iBottomBorder-2 - i*iMarkerSpacingY;
if (i%m_iBigMarkerSpacingY == 0) {
painter.setPen(penLargeScale);
painter.drawLine(iReducedLeftBorder-m_iBigMarkerLength, iPosY, iReducedLeftBorder, iPosY);
} else {
painter.setPen(penScale);
painter.drawLine(iReducedLeftBorder-m_iMarkerLength, iPosY, iReducedLeftBorder, iPosY);
}
}
// draw X axis markers
unsigned int iStartY = height()-(m_iBottomBorder+2);
for (unsigned int i = 0;i<m_iMarkersX;i++) {
int iPosX = iReducedLeftBorder+i*iMarkerSpacingX;
if (i%m_iBigMarkerSpacingX == 0) {
painter.setPen(penLargeScale);
painter.drawLine(iPosX, iStartY+m_iBigMarkerLength, iPosX, iStartY);
} else {
painter.setPen(penScale);
painter.drawLine(iPosX, iStartY+m_iMarkerLength, iPosX, iStartY);
}
}
m_iRightBorder = iReducedRightBorder+2;
}
void Q1DTransferFunction::DrawHistogram(QPainter& painter) {
if (m_pTrans == NULL) return;
// compute some grid dimensions
unsigned int iGridWidth = width()-(m_iLeftBorder+m_iRightBorder)-3;
unsigned int iGridHeight = height()-(m_iBottomBorder+m_iTopBorder)-2;
// draw the histogram a as large polygon
// define the polygon ...
std::vector<QPointF> pointList;
pointList.push_back(QPointF(m_iLeftBorder+1, iGridHeight-m_iBottomBorder));
if (iGridWidth < m_vHistogram.GetSize()) {
float fHistStep = m_vHistogram.GetSize()/float(iGridWidth);
size_t iHistStep = size_t(ceil(fHistStep));
for (size_t i = 0;i<iGridWidth;i++) {
float singleValue = 0;
for (size_t j = 0;j<iHistStep;j++) {
singleValue += m_vHistogram.Get(std::min(int(i*fHistStep)+j, m_vHistogram.GetSize()-1));
}
singleValue /= iHistStep;
float value = min<float>(1.0f, pow(singleValue,1.0f/(1+(m_fHistfScale-1)/100.0f)));
pointList.push_back(QPointF(m_iLeftBorder+1+i,
m_iTopBorder+iGridHeight-value*iGridHeight));
}
} else {
for (size_t i = 0;i<m_vHistogram.GetSize();i++) {
float value = min<float>(1.0f, pow(m_vHistogram.Get(i),1.0f/(1+(m_fHistfScale-1)/100.0f)));
pointList.push_back(QPointF(m_iLeftBorder+1+float(iGridWidth)*i/(m_vHistogram.GetSize()-1),
m_iTopBorder+iGridHeight-value*iGridHeight));
}
}
pointList.push_back(QPointF(m_iLeftBorder+iGridWidth, m_iTopBorder+iGridHeight));
pointList.push_back(QPointF(m_iLeftBorder+1, m_iTopBorder+iGridHeight));
// ... draw it
painter.setPen(Qt::NoPen);
painter.setBrush(m_colorHistogram);
painter.drawPolygon(&pointList[0], int(pointList.size()));
}
void Q1DTransferFunction::DrawFunctionPlots(QPainter& painter) {
if (m_pTrans == NULL) return;
// compute some grid dimensions
unsigned int iGridWidth = width()-(m_iLeftBorder+m_iRightBorder)-3;
unsigned int iGridHeight = height()-(m_iBottomBorder+m_iTopBorder)-2;
// draw the tranfer function as one larger polyline
std::vector<QPointF> pointList(m_vHistogram.GetSize());
QPen penCurve(m_colorBorder, 1, Qt::SolidLine);
// for every component
for (unsigned int j=0; j < 4; j++) {
// select the color
switch (j) {
case 0 : penCurve.setColor(m_colorRedLine); break;
case 1 : penCurve.setColor(m_colorGreenLine); break;
case 2 : penCurve.setColor(m_colorBlueLine); break;
default : penCurve.setColor(m_colorAlphaLine); break;
}
// define the polyline
for (size_t i=0; i < pointList.size(); i++) {
pointList[i] = QPointF(
m_iLeftBorder + 1 + float(iGridWidth) * i / (pointList.size() - 1),
m_iTopBorder + iGridHeight - std::max(0.0f,std::min(m_pTrans->vColorData[i][j],1.0f)) * iGridHeight
);
}
// draw the polyline
painter.setPen(penCurve);
painter.drawPolyline(&pointList[0], int(pointList.size()));
}
// draw preview bar
for (unsigned int x = 0;x<m_vHistogram.GetSize();x++) {
float r = std::max(0.0f,std::min(m_pTrans->vColorData[x][0],1.0f));
float g = std::max(0.0f,std::min(m_pTrans->vColorData[x][1],1.0f));
float b = std::max(0.0f,std::min(m_pTrans->vColorData[x][2],1.0f));
float a = std::max(0.0f,std::min(m_pTrans->vColorData[x][3],1.0f));
m_pPreviewColor->setPixel(x,0,qRgba(int(r*255),int(g*255),int(b*255),int(a*255)));
}
QRect prevRect(m_iLeftBorder+1,
m_iTopBorder - (m_iTopPreviewHeight + m_iTopPreviewDist),
width() - (m_iLeftBorder + 3 + m_iRightBorder),
m_iTopPreviewHeight);
painter.drawImage(prevRect,*m_pPreviewBack);
painter.drawImage(prevRect,*m_pPreviewColor);
}
void Q1DTransferFunction::mousePressEvent(QMouseEvent *event) {
if (m_pTrans == NULL) return;
// call superclass method
QWidget::mousePressEvent(event);
// clear the "last position" index
m_iLastIndex = -1;
if (event->button() == Qt::LeftButton) m_bMouseLeft = true;
if (event->button() == Qt::RightButton) m_bMouseRight = true;
}
void Q1DTransferFunction::mouseReleaseEvent(QMouseEvent *event) {
if (m_pTrans == NULL) return;
// call superclass method
QWidget::mouseReleaseEvent(event);
// clear the "last position" index
m_iLastIndex = -1;
if (event->button() == Qt::LeftButton) m_bMouseLeft = false;
if (event->button() == Qt::RightButton) m_bMouseRight = false;
// send message to update the GLtexture
if(m_eExecutionMode == ONRELEASE) {
ApplyFunction();
}
Controller::Instance().Provenance("1dtf", "set_tf_1d");
}
void Q1DTransferFunction::mouseMoveEvent(QMouseEvent *event) {
if (m_pTrans == NULL) return;
// call superclass method
QWidget::mouseMoveEvent(event);
// exit if nothing is to be painted
if (m_iPaintMode == PAINT_NONE) return;
// compute some grid dimensions
unsigned int iGridWidth = width()-(m_iLeftBorder+m_iRightBorder)-3;
unsigned int iGridHeight = height()-(m_iBottomBorder+m_iTopBorder)-2;
unsigned int iVectorSize = UINT32(m_vHistogram.GetSize());
// compute position in color array
int iCurrentIndex = int((float(event->x())-float(m_iLeftBorder)-1.0f)*float(iVectorSize-1)/float(iGridWidth));
iCurrentIndex = std::min<int>(iVectorSize-1, std::max<int>(0,iCurrentIndex));
// compute actual color value
float fValue = (float(m_iTopBorder)+float(iGridHeight)-float(event->y()))/float(iGridHeight);
fValue = std::min<float>(1.0f, std::max<float>(0.0f,fValue));
if (m_bMouseLeft) {
// find out the range to change
if (m_iLastIndex == -1) {
m_iLastIndex = iCurrentIndex;
m_fLastValue = fValue;
}
int iIndexMin, iIndexMax;
float fValueMin, fValueInc;
if (m_iLastIndex < iCurrentIndex) {
iIndexMin = m_iLastIndex;
iIndexMax = iCurrentIndex;
fValueMin = m_fLastValue;
fValueInc = -(fValue-m_fLastValue)/(m_iLastIndex-iCurrentIndex);
} else {
iIndexMin = iCurrentIndex;
iIndexMax = m_iLastIndex;
fValueMin = fValue;
fValueInc = -(fValue-m_fLastValue)/(m_iLastIndex-iCurrentIndex);
}
m_iLastIndex = iCurrentIndex;
m_fLastValue = fValue;
// update transfer function
if (m_iPaintMode & PAINT_RED) {
float _fValueMin = fValueMin;
for (int iIndex = iIndexMin;iIndex<=iIndexMax;++iIndex) {
m_pTrans->vColorData[iIndex][0] = _fValueMin;
_fValueMin += fValueInc;
}
}
if (m_iPaintMode & PAINT_GREEN) {
float _fValueMin = fValueMin;
for (int iIndex = iIndexMin;iIndex<=iIndexMax;++iIndex) {
m_pTrans->vColorData[iIndex][1] = _fValueMin;
_fValueMin += fValueInc;
}
}
if (m_iPaintMode & PAINT_BLUE) {
float _fValueMin = fValueMin;
for (int iIndex = iIndexMin;iIndex<=iIndexMax;++iIndex) {
m_pTrans->vColorData[iIndex][2] = _fValueMin;
_fValueMin += fValueInc;
}
}
if (m_iPaintMode & PAINT_ALPHA) {
float _fValueMin = fValueMin;
for (int iIndex = iIndexMin;iIndex<=iIndexMax;++iIndex) {
m_pTrans->vColorData[iIndex][3] = _fValueMin;
_fValueMin += fValueInc;
}
}
// redraw this widget
update();
// send message to update the GLtexture
if( m_eExecutionMode == CONTINUOUS ) ApplyFunction();
} else {
if (m_bMouseRight) {
bool bShiftPressed = ( event->modifiers() & Qt::ShiftModifier);
// set "step" function
if (m_iPaintMode & PAINT_RED) m_pTrans->SetStdFunction(float(iCurrentIndex)/float(m_pTrans->GetSize()), fValue,0, bShiftPressed);
if (m_iPaintMode & PAINT_GREEN) m_pTrans->SetStdFunction(float(iCurrentIndex)/float(m_pTrans->GetSize()), fValue,1, bShiftPressed);
if (m_iPaintMode & PAINT_BLUE) m_pTrans->SetStdFunction(float(iCurrentIndex)/float(m_pTrans->GetSize()), fValue,2, bShiftPressed);
if (m_iPaintMode & PAINT_ALPHA) m_pTrans->SetStdFunction(float(iCurrentIndex)/float(m_pTrans->GetSize()), fValue,3, bShiftPressed);
// redraw this widget
update();
// send message to update the GLtexture
if( m_eExecutionMode == CONTINUOUS ) ApplyFunction();
}
}
}
void Q1DTransferFunction::ApplyFunction() {
// send message to update the GLtexture
m_MasterController.MemMan()->Changed1DTrans(NULL, m_pTrans);
}
void Q1DTransferFunction::SetColor(bool bIsEnabled) {
if (bIsEnabled) {
m_colorHistogram = QColor(50,50,50);
m_colorBack = QColor(Qt::black);
m_colorBorder = QColor(100, 100, 255);
m_colorScale = QColor(100, 100, 255);
m_colorLargeScale = QColor(180, 180, 180);
m_colorRedLine = QColor(255, 0, 0);
m_colorGreenLine = QColor(0, 255, 0);
m_colorBlueLine = QColor(0, 0, 255);
m_colorAlphaLine = QColor(Qt::white);
} else {
m_colorHistogram = QColor(50,50,50);
m_colorBack = QColor(Qt::black);
m_colorBorder = QColor(100, 100, 100);
m_colorScale = QColor(100, 100, 100);
m_colorLargeScale = QColor(180, 180, 180);
m_colorRedLine = QColor(100, 40, 40);
m_colorGreenLine = QColor(40, 100, 40);
m_colorBlueLine = QColor(40, 40, 100);
m_colorAlphaLine = QColor(100,100,100);
}
}
void Q1DTransferFunction::changeEvent(QEvent * event) {
// call superclass method
QWidget::changeEvent(event);
if (event->type() == QEvent::EnabledChange) {
SetColor(isEnabled());
m_bBackdropCacheUptodate = false;
update();
}
}
void Q1DTransferFunction::RedrawPreviewBarBack() {
int w = MathTools::MakeMultiple<int>(width()-(m_iLeftBorder+3+m_iRightBorder), 8);
int h = MathTools::MakeMultiple<int>(m_iTopPreviewHeight, 8);
delete m_pPreviewBack;
m_pPreviewBack = new QImage(w,h,QImage::Format_RGB32);
unsigned int iCheckerboard[2] = {qRgb(128,128,128), qRgb(0,0,0)};
int iCurrent = 0;
for (int y = 0;y<h;y++) {
int iLastCurrent = iCurrent;
for (int x = 0;x<w;x++) {
if (x%8 == 0) iCurrent = 1-iCurrent;
m_pPreviewBack->setPixel(x,y,iCheckerboard[iCurrent]);
}
iCurrent = (y != 0 && y%8 == 0) ? 1-iLastCurrent : iLastCurrent;
}
}
void Q1DTransferFunction::paintEvent(QPaintEvent *event) {
// call superclass method
QWidget::paintEvent(event);
if (m_pTrans == NULL) {
QPainter painter(this);
DrawCoordinateSystem(painter);
return;
}
// as drawing the histogram can become quite expensive we'll cache it in an image and only redraw if needed
if (!m_bBackdropCacheUptodate || (unsigned int)height() != m_iCachedHeight || (unsigned int)width() != m_iCachedWidth) {
RedrawPreviewBarBack();
// delete the old pixmap an create a new one if the size has changed
if ((unsigned int)height() != m_iCachedHeight || (unsigned int)width() != m_iCachedWidth) {
delete m_pBackdropCache;
m_pBackdropCache = new QPixmap(width(),height());
}
// attach a painter to the pixmap
QPainter image_painter(m_pBackdropCache);
// draw the backdrop into the image
DrawCoordinateSystem(image_painter);
DrawHistogram(image_painter);
// update change detection states
m_bBackdropCacheUptodate = true;
m_iCachedHeight = height();
m_iCachedWidth = width();
}
// now draw everything rest into this widget
QPainter painter(this);
// the image captured before (or cached from a previous call)
painter.drawImage(0,0,m_pBackdropCache->toImage());
// and the function plots
DrawFunctionPlots(painter);
}
bool Q1DTransferFunction::LoadFromFile(const QString& strFilename) {
// hand the load call over to the TransferFunction1D class
size_t iSize = 0;
if(m_pTrans) {
iSize = m_pTrans->GetSize();
}
if( m_pTrans->Load(strFilename.toStdString(), iSize) ) {
PreparePreviewData();
update();
ApplyFunction();
return true;
} else return false;
}
bool Q1DTransferFunction::AddFromFile(const QString& strFilename) {
size_t iSize = 0;
if(m_pTrans) {
iSize = m_pTrans->GetSize();
} else return false;
TransferFunction1D other(iSize);
if( other.Load(strFilename.toStdString(), iSize) ) {
for (size_t i = 0;i<iSize;i++)
m_pTrans->vColorData[i] += other.vColorData[i];
PreparePreviewData();
update();
ApplyFunction();
return true;
} else {
return false;
}
}
bool Q1DTransferFunction::SubtractFromFile(const QString& strFilename) {
size_t iSize = 0;
if(m_pTrans) {
iSize = m_pTrans->GetSize();
} else return false;
TransferFunction1D other(iSize);
if( other.Load(strFilename.toStdString(), iSize) ) {
for (size_t i = 0;i<iSize;i++)
m_pTrans->vColorData[i] -= other.vColorData[i];
PreparePreviewData();
update();
ApplyFunction();
return true;
} else {
return false;
}
}
bool Q1DTransferFunction::SaveToFile(const QString& strFilename) {
// hand the save call over to the TransferFunction1D class
return m_pTrans->Save(strFilename.toStdString());
}
|