Changeset 1552 in Sophya


Ignore:
Timestamp:
Jun 27, 2001, 12:21:16 PM (24 years ago)
Author:
ansari
Message:

Suite affichage infos complementaires ds PIImage - Reza 27/6/2001

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PI/parradapter.cc

    r1549 r1552  
    154154  this->Coord(ix, iy, x, y);
    155155  char * isr = "";
    156   if (ISFunc)  isr = ISFunc(this, ix, iy);
    157   sprintf(ibuff,"X= %g Y= %g  Pix= %8g %s        ",
    158           x, y , this->Value(ix, iy), isr );
     156  if (ISFunc != NULL)  isr = ISFunc(this, ix, iy);
     157  sprintf(ibuff,"X= %g Y= %g  Pix= %g %s   ",
     158          x, y , (*this)(ix, iy), isr);
    159159  return (ibuff);
    160160}
Note: See TracChangeset for help on using the changeset viewer.