Changeset 2057 in Sophya for trunk/SophyaPI
- Timestamp:
- Jun 17, 2002, 3:36:09 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PI/pidrawer.cc
r2003 r2057 7 7 #include <strings.h> 8 8 #include <iostream.h> 9 // #include <typeinfo>10 #include "utilgeom.h"11 9 #include "pidrawer.h" 12 10 #include "pidrwtools.h" 13 11 14 12 #include "ucckprot.h" 13 14 #define dble_SWAP(__a,__b) {double __tmp=__a; __a=__b; __b=__tmp;} 15 15 16 16 //++ … … 697 697 698 698 double axmin=fabs(xmin), axmax=fabs(xmax); 699 if(axmin>axmax) swap(axmin,axmax); 699 if(axmin>axmax) dble_SWAP(axmin,axmax) 700 700 701 double l10amax = log10(axmax), l10xstep = log10(xstep); 701 702 int il10amax = int(floor(l10amax));
Note:
See TracChangeset
for help on using the changeset viewer.