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.5 by greg, Mon Jul 9 09:55:50 1990 UTC vs.
Revision 2.5 by schorsch, Mon Jul 21 22:30:18 2003 UTC

# Line 1 | Line 1
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
4
5 /* Copyright (c) 1989 Regents of the University of California */
6
4   /*
5   *  genworm.c - program to generate worms (strings with varying thickness).
6   *
# Line 15 | Line 12 | static char SCCSid[] = "$SunId$ LBL";
12   */
13  
14   #include  <stdio.h>
15 <
15 > #include  <math.h>
16   #include  "fvect.h"
17  
18 < #define  XNAME          "X_"                    /* x function name */
19 < #define  YNAME          "Y_"                    /* y function name */
20 < #define  ZNAME          "Z_"                    /* z function name */
21 < #define  RNAME          "R_"                    /* r function name */
18 > #define  XNAME          "X`SYS`"                /* x function name */
19 > #define  YNAME          "Y`SYS`"                /* y function name */
20 > #define  ZNAME          "Z`SYS`"                /* z function name */
21 > #define  RNAME          "R`SYS`"                /* r function name */
22  
23   #define  PI             3.14159265358979323846
24  
28 #define  FTINY          1e-7
29
25   #define  max(a,b)       ((a) > (b) ? (a) : (b))
26  
27  
28   double  funvalue(), l_hermite(), l_bezier(), l_bspline(), argument();
29 + void  quit();
30  
31  
32   main(argc, argv)
# Line 43 | Line 39 | char  *argv[];
39          FVECT  lastp, p;
40          int  i, nseg;
41  
42 <        varset("PI", PI, NULL);
43 <        funset("hermite", 5, l_hermite);
44 <        funset("bezier", 5, l_bezier);
45 <        funset("bspline", 5, l_bspline);
42 >        varset("PI", ':', PI);
43 >        funset("hermite", 5, ':', l_hermite);
44 >        funset("bezier", 5, ':', l_bezier);
45 >        funset("bspline", 5, ':', l_bspline);
46  
47          if (argc < 8)
48                  goto userror;
49  
50          for (i = 8; i < argc; i++)
51                  if (!strcmp(argv[i], "-e"))
52 <                        scompile(NULL, argv[++i]);
52 >                        scompile(argv[++i], NULL, 0);
53                  else if (!strcmp(argv[i], "-f"))
54                          fcompile(argv[++i]);
55                  else
56                          goto userror;
57  
58          sprintf(stmp, "%s(t)=%s;", XNAME, argv[3]);
59 <        scompile(NULL, stmp);
59 >        scompile(stmp, NULL, 0);
60          sprintf(stmp, "%s(t)=%s;", YNAME, argv[4]);
61 <        scompile(NULL, stmp);
61 >        scompile(stmp, NULL, 0);
62          sprintf(stmp, "%s(t)=%s;", ZNAME, argv[5]);
63 <        scompile(NULL, stmp);
63 >        scompile(stmp, NULL, 0);
64          sprintf(stmp, "%s(t)=%s;", RNAME, argv[6]);
65 <        scompile(NULL, stmp);
65 >        scompile(stmp, NULL, 0);
66          nseg = atoi(argv[7]);
67          if (nseg <= 0)
68                  goto userror;
# Line 80 | Line 76 | char  *argv[];
76                  p[1] = funvalue(YNAME, 1, &t);
77                  p[2] = funvalue(ZNAME, 1, &t);
78                  r = funvalue(RNAME, 1, &t);
79 <                if (i)
79 >                if (i) {
80                          if (lastr <= r+FTINY && lastr >= r-FTINY) {
81                                  printf("\n%s cylinder %s.c%d\n",
82                                                  argv[1], argv[2], i);
# Line 107 | Line 103 | char  *argv[];
103                                  f = f <= 0.0 ? 0.0 : sqrt(f);
104                                  printf("%18.12g %18.12g\n", f*lastr, f*r);
105                          }
106 +                }
107                  printf("\n%s sphere %s.s%d\n", argv[1], argv[2], i);
108                  printf("0\n0\n4 %18.12g %18.12g %18.12g %18.12g\n",
109                                  p[0], p[1], p[2], r);
# Line 123 | Line 120 | userror:
120   }
121  
122  
123 + void
124   eputs(msg)
125   char  *msg;
126   {
# Line 130 | Line 128 | char  *msg;
128   }
129  
130  
131 + void
132   wputs(msg)
133   char  *msg;
134   {
# Line 137 | Line 136 | char  *msg;
136   }
137  
138  
139 + void
140   quit(code)
141 + int  code;
142   {
143          exit(code);
144   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines