Changeset 2545 in Sophya for trunk/SophyaPI/PIext/pintup3d.cc
- Timestamp:
- Jun 1, 2004, 5:50:42 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/pintup3d.cc
r2524 r2545 48 48 mNT = nt; 49 49 mAdDO = ad; 50 mAutoScaleXY = mAutoScaleZ= true;50 aScxy = aScz = true; 51 51 UseSizeScale(true, 5); 52 52 UseColorScale(true); … … 142 142 143 143 ComputeScaleFactor(xmin, xmax, ymin, ymax, zmin, zmax, 144 mAutoScaleXY, mAutoScaleZ, mScy, mScz);144 aScxy, aScz, mScy, mScz); 145 145 146 146 // cout << " DEBUG - NTup3D X:" << XMin3() << "-" << XMax3() " s=" << mScx … … 313 313 UseSizeScale(true, nbn); 314 314 } 315 else if (opts == "rescalexy") mAutoScaleXY= true;316 else if (opts == "norescalexy") mAutoScaleXY= false;317 else if (opts == "rescalez") mAutoScaleZ= true;318 else if (opts == "norescalez") mAutoScaleZ= false;315 else if (opts == "rescalexy") aScxy = true; 316 else if (opts == "norescalexy") aScxy = false; 317 else if (opts == "rescalez") aScz = true; 318 else if (opts == "norescalez") aScz = false; 319 319 else { 320 320 // Si option non decode … … 346 346 } else opt.push_back("nosizescale"); 347 347 348 if( mAutoScaleXY) opt.push_back("rescalexy");348 if(aScxy) opt.push_back("rescalexy"); 349 349 else opt.push_back("norescalexy"); 350 350 351 if( mAutoScaleZ) opt.push_back("rescalez");351 if(aScz) opt.push_back("rescalez"); 352 352 else opt.push_back("norescalez"); 353 353
Note:
See TracChangeset
for help on using the changeset viewer.