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.4 by greg, Fri Jun 19 13:07:48 1992 UTC vs.
Revision 2.7 by greg, Fri Oct 2 16:20:26 1992 UTC

# Line 221 | Line 221 | register OBJREC  *tm;
221          i = sndx(tm);
222          d = i < tm->oargs.nfargs ? tm->oargs.farg[i] : 0.0;
223          i = d * 256.0;
224 +        t->tl.width = 0;
225          for (tlp = t->tl.next; tlp != NULL; tlp = tlp->next) {
226                  if ((tlp->spc = (short *)malloc(
227                                  (strlen(TLSTR(tlp))+1)*sizeof(short))) == NULL)
# Line 231 | Line 232 | register OBJREC  *tm;
232                          tlp->width = proptext(tlp->spc, TLSTR(tlp), t->f, i, 3);
233                  else
234                          tlp->width = uniftext(tlp->spc, TLSTR(tlp), t->f);
235 +                if (tlp->width > t->tl.width)
236 +                        t->tl.width = tlp->width;
237          }
238                                                  /* we're done */
239          tm->os = (char *)t;
# Line 274 | Line 277 | OBJREC  *m;
277          v[0] = p[0] - m->oargs.farg[0];
278          v[1] = p[1] - m->oargs.farg[1];
279          v[2] = p[2] - m->oargs.farg[2];
280 <        h = x = DOT(v, tp->right)*256.;
280 >        x = DOT(v, tp->right);
281 >        i = sndx(m);
282 >        if (i < m->oargs.nfargs)
283 >                x *= tp->f->mwidth + 256.*fabs(m->oargs.farg[i]);
284 >        else
285 >                x *= 256.;
286 >        h = x;
287          i = y = DOT(v, tp->down);
288          if (x < 0.0 || y < 0.0)
289                  return(0);
# Line 295 | Line 304 | OBJREC  *m;
304  
305  
306   inglyph(x, y, gl)               /* (x,y) within font glyph gl? */
307 < double  x, y;
307 > double  x, y;           /* real coordinates in range [0,256) */
308   register GLYPH  *gl;
309   {
310          int  n, ncross;
311 <        int  xtc, ytc;
311 >        int  xlb, ylb;
312 >        int  tv;
313          register GORD  *p0, *p1;
314  
315          if (gl == NULL)
316                  return(0);
317 <        xtc = x + 0.5;                  /* compute test coordinates */
318 <        ytc = y + 0.5;
319 <        if (gl->left > xtc || gl->right < xtc ||
320 <                        gl->bottom > ytc || gl->top < ytc)
321 <                return(0);      /* outside extent */
317 >        xlb = x;
318 >        ylb = y;
319 >        if (gl->left > xlb || gl->right <= xlb ||       /* check extent */
320 >                        gl->bottom > ylb || gl->top <= ylb)
321 >                return(0);
322 >        xlb = xlb<<1 | 1;               /* add 1/2 to test points... */
323 >        ylb = ylb<<1 | 1;               /* ...so no equal comparisons */
324          n = gl->nverts;                 /* get # of vertices */
325          p0 = gvlist(gl) + 2*(n-1);      /* connect last to first */
326          p1 = gvlist(gl);
327          ncross = 0;
328                                          /* positive x axis cross test */
329          while (n--) {
330 <                if ((p0[1] > ytc) ^ (p1[1] > ytc))
331 <                        if (p0[0] > xtc && p1[0] > xtc)
330 >                if ((p0[1]<<1 > ylb) ^ (p1[1]<<1 > ylb)) {
331 >                        tv = p0[0]<<1 > xlb | (p1[0]<<1 > xlb) << 1;
332 >                        if (tv == 03)
333                                  ncross++;
334 <                        else if (p0[0] > xtc || p1[0] > xtc)
334 >                        else if (tv)
335                                  ncross += (p1[1] > p0[1]) ^
336                                                  ((p0[1]-y)*(p1[0]-x) >
337                                                  (p0[0]-x)*(p1[1]-y));
338 +                }
339                  p0 = p1;
340                  p1 += 2;
341          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines