Changeset 1534 in Sophya for trunk/SophyaPI/PI/picontainergen.cc


Ignore:
Timestamp:
Jun 15, 2001, 6:17:08 PM (24 years ago)
Author:
ansari
Message:

Modifs PSPrint pour facteur d'echelle - Pas termine , Reza 15/6/2001

File:
1 edited

Legend:

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

    r440 r1534  
    125125
    126126/* --Methode-- */
    127 void PIContainerGen::PSPrint(PSFile *psf, int ofx, int ofy)
     127void PIContainerGen::PSPrint(PSFile *psf, int ofx, int ofy, double scale_x, double scale_y)
    128128{
    129129int i;
    130130if (!psf)  return;
    131131if (!Visible())  return;
    132 for(i=0; i<NbChilds(); i++)  GetChild(i)->PSPrint(psf, ofx+XPos(), ofy+YPos());
     132for(i=0; i<NbChilds(); i++) 
     133  GetChild(i)->PSPrint(psf, ofx+XPos(), ofy+YPos(), scale_x, scale_y);
    133134return;
    134135}
Note: See TracChangeset for help on using the changeset viewer.