| # | Line 10 | Line 10 | static char SCCSid[] = "$SunId$ LBL"; | |
|---|---|---|
| 10 | * 8/28/85 | |
| 11 | */ | |
| 12 | ||
| 13 | + | #include "fvect.h" |
| 14 | + | |
| 15 | #include "plocate.h" | |
| 16 | ||
| 17 | ||
| 18 | int | |
| 19 | plocate(p, min, max) /* return location of p w.r.t. min & max */ | |
| 20 | < | register double p[3]; |
| 21 | < | double min[3], max[3]; |
| 20 | > | register FVECT p; |
| 21 | > | FVECT min, max; |
| 22 | { | |
| 23 | register int loc = 0; | |
| 24 | ||
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |