Changeset 2092 in Sophya for trunk/SophyaPI/PIext/pigfd1.cc
- Timestamp:
- Jul 14, 2002, 7:03:43 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/pigfd1.cc
r1905 r2092 4 4 #include "pigfd1.h" 5 5 6 #define PERC_GARDE 0.02 6 7 7 8 /* --Methode-- */ … … 47 48 if(xmax<=xmin) xmax = xmin+1.; 48 49 if(ymax<=ymin) ymax = ymin+1.; 49 dx = 0.02*(xmax-xmin);50 dy = 0.02*(ymax-ymin);50 dx = PERC_GARDE*(xmax-xmin); 51 dy = PERC_GARDE*(ymax-ymin); 51 52 SetLimits((double)xmin-dx,(double)xmax+dx,(double)ymin-dy,(double)ymax+dy); 52 53 SetAxesFlags(kBoxAxes | kExtTicks | kLabels);
Note:
See TracChangeset
for help on using the changeset viewer.