Changeset 2115 in Sophya for trunk/SophyaPI/PIext/pistlist.cc
- Timestamp:
- Jul 17, 2002, 11:59:50 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/pistlist.cc
r2092 r2115 4 4 #include <stdio.h> 5 5 #include "pistlist.h" 6 7 #define PERC_GARDE 0.028 6 9 7 //++ … … 84 82 85 83 // Commencer par trouver nos limites 86 double dx, dy; 87 double x1, x2, y1, y2; 84 double x1,x2,y1,y2; 88 85 mStL->CalcXYLimits(x1, x2, y1, y2); 89 90 dx = PERC_GARDE*(x2-x1); 91 dy = PERC_GARDE*(y2-y1); 92 93 SetLimits(x1-dx, x2+dx, y1-dy, y2+dy); 86 PIAxes::ReSizeMinMax(isLogScaleX(),x1,x2); 87 PIAxes::ReSizeMinMax(isLogScaleY(),y1,y2); 88 SetLimits(x1,x2,y1,y2); 94 89 SetAxesFlags(kBoxAxes | kExtTicks | kLabels); 95 90 }
Note:
See TracChangeset
for help on using the changeset viewer.