ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/gen/genworm.c
(Generate patch)

Comparing ray/src/gen/genworm.c (file contents):
Revision 1.3 by greg, Fri Mar 2 17:24:05 1990 UTC vs.
Revision 2.8 by greg, Sat Aug 21 11:54:06 2004 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1989 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  genworm.c - program to generate worms (strings with varying thickness).
6   *
# Line 14 | Line 11 | static char SCCSid[] = "$SunId$ LBL";
11   *      9/24/87
12   */
13  
14 + #include  <stdlib.h>
15   #include  <stdio.h>
16 + #include  <math.h>
17 + #include  <string.h>
18  
19 + #include  "calcomp.h"
20 + #include  "resolu.h"
21 + #include  "rterror.h"
22   #include  "fvect.h"
23  
24 < #define  XNAME          "X_"                    /* x function name */
25 < #define  YNAME          "Y_"                    /* y function name */
26 < #define  ZNAME          "Z_"                    /* z function name */
27 < #define  RNAME          "R_"                    /* r function name */
24 > #define  XNAME          "X`SYS`"                /* x function name */
25 > #define  YNAME          "Y`SYS`"                /* y function name */
26 > #define  ZNAME          "Z`SYS`"                /* z function name */
27 > #define  RNAME          "R`SYS`"                /* r function name */
28  
29   #define  PI             3.14159265358979323846
30  
28 #define  FTINY          1e-7
29
31   #define  max(a,b)       ((a) > (b) ? (a) : (b))
32  
33  
34 < double  funvalue(), l_hermite(), l_bezier(), argument();
34 > /* XXX redundant, move to library */
35 > double  l_hermite(char *), l_bezier(char *), l_bspline(char *);
36  
37  
38 + int
39   main(argc, argv)
40   int  argc;
41   char  *argv[];
42   {
43          char  stmp[256];
44 <        double  t, f, lastr, r;
44 >        double  t, f, lastr = 0, r;
45          FVECT  lastp, p;
46          int  i, nseg;
47  
48 <        varset("PI", PI, NULL);
49 <        funset("hermite", 5, l_hermite);
50 <        funset("bezier", 5, l_bezier);
48 >        varset("PI", ':', PI);
49 >        funset("hermite", 5, ':', l_hermite);
50 >        funset("bezier", 5, ':', l_bezier);
51 >        funset("bspline", 5, ':', l_bspline);
52  
53          if (argc < 8)
54                  goto userror;
55  
56          for (i = 8; i < argc; i++)
57                  if (!strcmp(argv[i], "-e"))
58 <                        scompile(NULL, argv[++i]);
58 >                        scompile(argv[++i], NULL, 0);
59                  else if (!strcmp(argv[i], "-f"))
60                          fcompile(argv[++i]);
61                  else
62                          goto userror;
63  
64          sprintf(stmp, "%s(t)=%s;", XNAME, argv[3]);
65 <        scompile(NULL, stmp);
65 >        scompile(stmp, NULL, 0);
66          sprintf(stmp, "%s(t)=%s;", YNAME, argv[4]);
67 <        scompile(NULL, stmp);
67 >        scompile(stmp, NULL, 0);
68          sprintf(stmp, "%s(t)=%s;", ZNAME, argv[5]);
69 <        scompile(NULL, stmp);
69 >        scompile(stmp, NULL, 0);
70          sprintf(stmp, "%s(t)=%s;", RNAME, argv[6]);
71 <        scompile(NULL, stmp);
71 >        scompile(stmp, NULL, 0);
72          nseg = atoi(argv[7]);
73          if (nseg <= 0)
74                  goto userror;
75  
76 <        printhead(argc, argv);
76 >        fputs("# ", stdout);
77 >        printargs(argc, argv, stdout);
78 >        eclock = 0;
79  
80          for (i = 0; i <= nseg; i++) {
81                  t = (double)i/nseg;
# Line 77 | Line 83 | char  *argv[];
83                  p[1] = funvalue(YNAME, 1, &t);
84                  p[2] = funvalue(ZNAME, 1, &t);
85                  r = funvalue(RNAME, 1, &t);
86 <                if (i)
86 >                if (i) {
87                          if (lastr <= r+FTINY && lastr >= r-FTINY) {
88                                  printf("\n%s cylinder %s.c%d\n",
89                                                  argv[1], argv[2], i);
# Line 104 | Line 110 | char  *argv[];
110                                  f = f <= 0.0 ? 0.0 : sqrt(f);
111                                  printf("%18.12g %18.12g\n", f*lastr, f*r);
112                          }
113 +                }
114                  printf("\n%s sphere %s.s%d\n", argv[1], argv[2], i);
115                  printf("0\n0\n4 %18.12g %18.12g %18.12g %18.12g\n",
116                                  p[0], p[1], p[2], r);
117                  VCOPY(lastp, p);
118                  lastr = r;
119          }
120 <        quit(0);
120 >        return 0;
121  
122   userror:
123          fprintf(stderr,
124   "Usage: %s material name x(t) y(t) z(t) r(t) nseg [-e expr] [-f file]\n",
125                          argv[0]);
126 <        quit(1);
126 >        return 1;
127   }
128  
129  
123 eputs(msg)
124 char  *msg;
125 {
126        fputs(msg, stderr);
127 }
128
129
130 wputs(msg)
131 char  *msg;
132 {
133        eputs(msg);
134 }
135
136
137 quit(code)
138 {
139        exit(code);
140 }
141
142
143 printhead(ac, av)               /* print command header */
144 register int  ac;
145 register char  **av;
146 {
147        putchar('#');
148        while (ac--) {
149                putchar(' ');
150                fputs(*av++, stdout);
151        }
152        putchar('\n');
153 }
154
155
130   double
131 < l_hermite()                    
131 > l_hermite(char *nm)
132   {
133          double  t;
134          
# Line 167 | Line 141 | l_hermite()                    
141  
142  
143   double
144 < l_bezier()
144 > l_bezier(char *nm)
145   {
146          double  t;
147  
# Line 176 | Line 150 | l_bezier()
150                  argument(2) * 3.*t*(1.+t*(-2.+t)) +
151                  argument(3) * 3.*t*t*(1.-t) +
152                  argument(4) * t*t*t );
153 + }
154 +
155 +
156 + double
157 + l_bspline(char *nm)
158 + {
159 +        double  t;
160 +
161 +        t = argument(5);
162 +        return( argument(1) * (1./6.+t*(-1./2.+t*(1./2.-1./6.*t))) +
163 +                argument(2) * (2./3.+t*t*(-1.+1./2.*t)) +
164 +                argument(3) * (1./6.+t*(1./2.+t*(1./2.-1./2.*t))) +
165 +                argument(4) * (1./6.*t*t*t) );
166   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines