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

Comparing ray/src/cv/rad2mgf.c (file contents):
Revision 2.12 by greg, Wed May 10 19:46:05 1995 UTC vs.
Revision 2.15 by gwlarson, Wed Oct 14 14:48:04 1998 UTC

# Line 8 | Line 8 | static char SCCSid[] = "$SunId$ LBL";
8   * Convert Radiance scene description to MGF
9   */
10  
11 < #include <stdio.h>
12 < #include <math.h>
11 > #include "standard.h"
12   #include <ctype.h>
13   #include <string.h>
15 #include "fvect.h"
14   #include "object.h"
15   #include "color.h"
16   #include "lookup.h"
17  
20 #define PI      3.14159265358979323846
21
18   #define C_1SIDEDTHICK   0.005
19  
20   int     o_face(), o_cone(), o_sphere(), o_ring(), o_cylinder();
# Line 26 | Line 22 | int    o_instance(), o_illum();
22   int     o_plastic(), o_metal(), o_glass(), o_dielectric(),
23          o_mirror(), o_trans(), o_light();
24  
25 < extern void     free();
30 < extern char     *malloc();
25 > extern int      free();
26  
27   LUTAB   rmats = LU_SINIT(free,NULL);            /* defined material table */
28  
# Line 431 | Line 426 | o_face(mod, typ, id, fa)               /* print out a polygon */
426   char    *mod, *typ, *id;
427   FUNARGS *fa;
428   {
429 <        char    entbuf[512];
429 >        char    entbuf[2048], *linestart;
430          register char   *cp;
431          register int    i;
432  
# Line 439 | Line 434 | FUNARGS        *fa;
434                  return(-1);
435          setmat(mod);
436          setobj(id);
437 <        cp = entbuf;
437 >        cp = linestart = entbuf;
438          *cp++ = 'f';
439          for (i = 0; i < fa->nfargs; i += 3) {
440                  *cp++ = ' ';
441 +                if (cp - linestart > 72) {
442 +                        *cp++ = '\\'; *cp++ = '\n';
443 +                        linestart = cp;
444 +                        *cp++ = ' '; *cp++ = ' ';
445 +                }
446                  getvertid(cp, fa->farg + i);
447                  while (*cp)
448                          cp++;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines