Changeset 2089 in Sophya for trunk/SophyaPI/PIext


Ignore:
Timestamp:
Jul 11, 2002, 11:30:33 PM (23 years ago)
Author:
cmv
Message:

add simpleaxesgrid finesimpleaxesgrid finesimpleaxes cmv 11/7/2002

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/basexecut.cc

    r1971 r2089  
    7575  string opts = tokens[0];
    7676  if (tokens.size() > 1)
    77     for(int kt=1; kt<tokens.size(); kt++)  { opts += ' '; opts += tokens[kt]; }
     77    for(unsigned int kt=1; kt<tokens.size(); kt++)  { opts += ' '; opts += tokens[kt]; }
    7878  if (mImgApp) mImgApp->SetDefaultGraphicAttributes(opts);
    7979  }
     
    8282  string opts = tokens[0];
    8383  if (tokens.size() > 1)
    84     for(int kt=1; kt<tokens.size(); kt++)  { opts += ' '; opts += tokens[kt]; }
     84    for(unsigned int kt=1; kt<tokens.size(); kt++)  { opts += ' '; opts += tokens[kt]; }
    8585  if (mImgApp) mImgApp->SetDefaultAxesAttributes(opts);
    8686  }
     
    121121  double yc = atof(tokens[1].c_str());
    122122  double rad = atof(tokens[2].c_str());
    123   bool fgsr = false;
    124123  string sop;
    125124  if (tokens.size() > 3) sop = tokens[3];
     
    131130else if (kw == "settitle") {
    132131  if (tokens.size() < 1) { cout << "Usage: settitle TopTitle [BotTitle] [fontatt]" << endl;  return(0); }
    133   bool fgsr = true;
    134132  mImgApp->SetTitle(tokens[0], tokens[1]);
    135133  }
     
    779777usage += ">> imagecenter=ix,iy -> Position the image in widget \n";
    780778usage += ">> Axes:  stdaxes=defaxes=boxaxes  simpleaxes boxaxesgrid \n";
    781 usage += "          fineaxes  fineaxesgrid \n";
     779usage += "          fineaxes finesimpleaxes  fineaxesgrid=grid \n";
     780usage += "          simpleaxesgrid finesimpleaxesgrid \n";
    782781usage += ">> LogScale : linx liny logx logy -> Lin/Log Scales for 2D plots \n";
    783782usage += ">> XYLimits : xylimits  -> Forces X-Y limits in 2-D plots \n";
     
    791790usage = "To set default axes attributes \n  Usage: setaxesatt att_list \n";
    792791usage += ">> Axes:  stdaxes=defaxes=boxaxes  simpleaxes boxaxesgrid \n";
    793 usage += "          fineaxes  fineaxesgrid \n";
     792usage += "          fineaxes  finesimpleaxes fineaxesgrid=grid \n";
     793usage += "          simpleaxesgrid finesimpleaxesgrid \n";
    794794usage += ">> LogScale : linx liny logx logy -> Lin/Log Scales for 2D plots \n";
    795795usage += ">> xylimits=xmin,xmax,ymin,ymax  -> Forces X-Y limits in 2-D plots \n";
Note: See TracChangeset for help on using the changeset viewer.