Changeset 486 in Sophya for trunk/SophyaPI/PIext/nobjmgr.cc
- Timestamp:
- Oct 21, 1999, 2:22:56 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nobjmgr.cc
r466 r486 1021 1021 /* --Methode-- */ 1022 1022 void NamedObjMgr::DisplayNT(string& nom, string& nmx, string& nmy, string& nmz, 1023 string& erx, string& ery, string& erz, string dopt, bool fg3d) 1023 string& erx, string& ery, string& erz, string& wt, 1024 string& label, string dopt, bool fg3d) 1024 1025 { 1025 1026 AnyDataObj* obj=GetObj(nom); … … 1049 1050 PINTuple3D* pin = new PINTuple3D(nt, false); 1050 1051 pin->SelectXYZ(nmx.c_str(), nmy.c_str(), nmz.c_str()); 1052 pin->SelectWt(wt.c_str()); 1053 pin->SelectLabel(label.c_str()); 1051 1054 pin->SelectErrBar(erx.c_str(), ery.c_str(), erz.c_str()); 1052 1055 string titre = nmz + "%" + nmy + "%" + nmz; … … 1056 1059 PINTuple* pin = new PINTuple(nt, false); 1057 1060 pin->SelectXY(nmx.c_str(), nmy.c_str()); 1061 pin->SelectWt(wt.c_str()); 1062 pin->SelectLabel(label.c_str()); 1058 1063 pin->SelectErrBar(erx.c_str(), ery.c_str()); 1059 if ( nmz.length()>0 ) pin->SelectWt(nmz.c_str());1060 1064 string titre = nmy + "%" + nmx; 1061 1065 wrsid = myImgApp->DispScDrawer( (PIDrawer*)pin, n1, opt, titre);
Note:
See TracChangeset
for help on using the changeset viewer.