ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/standard.h
(Generate patch)

Comparing ray/src/common/standard.h (file contents):
Revision 1.4 by greg, Thu Oct 18 13:34:09 1990 UTC vs.
Revision 1.6 by greg, Fri Apr 12 13:55:33 1991 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1988 Regents of the University of California */
1 > /* Copyright (c) 1990 Regents of the University of California */
2  
3   /* SCCSid "$SunId$ LBL" */
4  
# Line 12 | Line 12
12  
13   #include  <errno.h>
14  
15 < #include  "fvect.h"
15 > #include  "mat4.h"
16 >                                /* regular transformation */
17 > typedef struct {
18 >        MAT4  xfm;                              /* transform matrix */
19 >        double  sca;                            /* scalefactor */
20 > }  XF;
21 >                                /* complemetary tranformation */
22 > typedef struct {
23 >        XF  f;                                  /* forward */
24 >        XF  b;                                  /* backward */
25 > }  FULLXF;
26  
27   #define  FHUGE          (1e10)          /* large real number */
28   #define  FTINY          (1e-6)          /* small real number */
# Line 47 | Line 57 | extern int  errno;                     /* system error number */
57   #else
58   #define  copystruct(d,s)        bcopy((char *)(s),(char *)(d),sizeof(*(d)))
59   #endif
60 +
61   #ifndef  BSD
62   #define  bcopy(s,d,n)           (void)memcpy(d,s,n)
63   #define  bzero(d,n)             (void)memset(d,0,n)
64   #define  bcmp(b1,b2,n)          memcmp(b1,b2,n)
65   extern char  *memcpy(), *memset();
66 + #define  index                  strchr
67 + #define  rindex                 strrchr
68   #endif
69  
70   extern char  *sskip();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines