Changeset 1534 in Sophya for trunk/SophyaPI/PI/picontainergen.cc
- Timestamp:
- Jun 15, 2001, 6:17:08 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PI/picontainergen.cc
r440 r1534 125 125 126 126 /* --Methode-- */ 127 void PIContainerGen::PSPrint(PSFile *psf, int ofx, int ofy )127 void PIContainerGen::PSPrint(PSFile *psf, int ofx, int ofy, double scale_x, double scale_y) 128 128 { 129 129 int i; 130 130 if (!psf) return; 131 131 if (!Visible()) return; 132 for(i=0; i<NbChilds(); i++) GetChild(i)->PSPrint(psf, ofx+XPos(), ofy+YPos()); 132 for(i=0; i<NbChilds(); i++) 133 GetChild(i)->PSPrint(psf, ofx+XPos(), ofy+YPos(), scale_x, scale_y); 133 134 return; 134 135 }
Note:
See TracChangeset
for help on using the changeset viewer.