Changeset 1846 in Sophya for trunk/SophyaPI/PI/psfile.h
- Timestamp:
- Dec 31, 2001, 5:18:54 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PI/psfile.h
r1592 r1846 72 72 public: 73 73 /* Definition de la resolution coordonnees user par defaut (point/cm) */ 74 static void SetDefaultUserResolution(int resx, int resy); 75 static void GetDefaultUserResolution(int & resx, int & resy); 74 static void SetUserCoordResolution(float resx, float resy); 75 static float GetUserCoordResolution(float & resx, float & resy); 76 static float PSCoordResolution(); 76 77 77 78 /* Production fichier eps */ … … 80 81 PSFile (const char * FileName, PIOrientation orientation, 81 82 PIPaperSize paperSize= PI_A4, 82 double marginX = 5.0, double marginY = 5.0 ) ;83 double marginX = 3.0, double marginY = 3.0 ) ; 83 84 84 85 virtual ~PSFile(); … … 170 171 int BlocCounter; 171 172 double Dx,Dy; /* Sommet SE (unites utilisateur) */ 173 float FontScaleFactor; /* Facteur d'echelle pour les fontes */ 172 174 PIOrientation orientation; 173 175 long begin, end, tmp; /* Offsets dans le fichier */ … … 207 209 208 210 /* resolution coordonnees user (point/cm - pixels/cm) */ 209 static int def_user_resol_X, def_user_resol_Y; 211 static float def_user_resol_X, def_user_resol_Y; 212 static float def_user_resolution; 213 /* resolution coordonnees PostScript (point/cm - pixels/cm) */ 214 static float postscript_resolution; 210 215 } ; 211 216
Note:
See TracChangeset
for help on using the changeset viewer.