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

Comparing ray/src/rt/text.c (file contents):
Revision 2.16 by greg, Sat Jun 22 09:48:52 1996 UTC vs.
Revision 2.23 by schorsch, Sun Jul 27 22:12:03 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1995 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   *  text.c - functions for text patterns and mixtures.
6   */
7  
8 + #include "copyright.h"
9 +
10   #include  "ray.h"
11  
12   #include  "otypes.h"
# Line 77 | Line 76 | typedef struct {
76          TLINE  tl;                      /* line list */
77   }  TEXT;
78  
80 extern char  *getlibpath();
81
82 extern char  *fgetword();
83
79   TEXT  *gettext();
80  
81   TLINE  *tlalloc();
# Line 105 | Line 100 | RAY  *r;
100                  char  *modname = m->oargs.sarg[foreground ? 0 : 1];
101                  if (!strcmp(modname, VOIDID))
102                          omod = OVOID;
103 <                else if ((omod = modifier(modname)) == OVOID) {
103 >                else if ((omod = lastmod(objndx(m), modname)) == OVOID) {
104                          sprintf(errmsg, "undefined modifier \"%s\"", modname);
105                          objerror(m, USER, errmsg);
106                  }
# Line 139 | Line 134 | TLINE *
134   tlalloc(s)                      /* allocate and assign text line */
135   char  *s;
136   {
142        extern char  *strcpy();
137          register int  siz;
138          register TLINE  *tl;
139  
# Line 159 | Line 153 | register OBJREC  *tm;
153   {
154   #define  R      (tm->oargs.farg+3)
155   #define  D      (tm->oargs.farg+6)
162        extern char  *strcpy();
156          FVECT  DxR;
157          double  d;
158          FILE  *fp;
# Line 179 | Line 172 | register OBJREC  *tm;
172                                                  /* compute vectors */
173          fcross(DxR, D, R);
174          fcross(t->right, DxR, D);
175 <        d = DOT(D,D)/DOT(t->right,t->right);
175 >        d = DOT(t->right,t->right);
176 >        if (d <= FTINY*FTINY*FTINY*FTINY)
177 >                objerror(tm, USER, "illegal motion vector");
178 >        d = DOT(D,D)/d;
179          for (i = 0; i < 3; i++)
180                  t->right[i] *= d;
181          fcross(t->down, R, DxR);
# Line 200 | Line 196 | register OBJREC  *tm;
196                  tlp = tlp->next;
197          } else {                                /* text file */
198                  if ((s = getpath(tm->oargs.sarg[tndx(tm)],
199 <                                getlibpath(), R_OK)) == NULL) {
199 >                                getrlibpath(), R_OK)) == NULL) {
200                          sprintf(errmsg, "cannot find text file \"%s\"",
201                                          tm->oargs.sarg[tndx(tm)]);
202                          error(USER, errmsg);
# Line 255 | Line 251 | OBJREC  *m;
251                  return;
252          while ((tlp = tp->tl.next) != NULL) {
253                  tp->tl.next = tlp->next;
254 <                free((char *)tlp->spc);
255 <                free((char *)tlp);
254 >                free((void *)tlp->spc);
255 >                free((void *)tlp);
256          }
257 <        free((char *)tp);
257 >        freefont(tp->f);        /* release font reference */
258 >        free((void *)tp);
259          m->os = NULL;
260   }
261  
# Line 328 | Line 325 | register GLYPH  *gl;
325                                          /* positive x axis cross test */
326          while (n--) {
327                  if ((p0[1]<<1 > ylb) ^ (p1[1]<<1 > ylb)) {
328 <                        tv = p0[0]<<1 > xlb | (p1[0]<<1 > xlb) << 1;
328 >                        tv = (p0[0]<<1 > xlb) | ((p1[0]<<1 > xlb) << 1);
329                          if (tv == 03)
330                                  ncross++;
331                          else if (tv)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines