[ English Version | Japanese Version ]
[ Contents
| Operating Manual
| New Features and Bugs Fixed
| Technical Information
| Authors ]
[ Options and Resources
| Installation
| FAQ
| Japanese Support (or Internationalization)
| Fig Format 3.2 ]
Caveat: Because spline models of previous versions (quadratic B-splines and Bezier with hidden points) are no longer supported, curves that are present in version 3.1 and older files are automatically converted to X-splines. This translation is only an approximation process. It means that the converted curves are not exactly the same as the original ones. Though the translation usually provides almost identical curves, some hand-fitting may be needed in some pathological cases.
Explanation: Since X11R5, there has been a general resource *customization which can be set to the string -color which tells the system to look for an app-default file with the suffix -color (e.g. Fig-color) and read that instead of the usual (Fig). Inside Fig-color is an #include statement to read the normal Fig app-default file to get everything else not pertaining to color.
*** XPolyReg.c.orig Tue Dec 15 12:01:22 1992 --- XPolyReg.c Wed Nov 15 09:41:13 1995 *************** *** 402,408 **** if (numRects && pts->x == rects->x1 && pts->y == rects->y2 && pts[1].x == rects->x2 && (numRects == 1 || rects[-1].y1 != rects->y1) && ! (!i || pts[2].y > pts[1].y)) { rects->y2 = pts[1].y + 1; continue; } --- 402,409 ---- if (numRects && pts->x == rects->x1 && pts->y == rects->y2 && pts[1].x == rects->x2 && (numRects == 1 || rects[-1].y1 != rects->y1) && ! /* Fixed version from X11 R6 */ ! (i && pts[2].y > pts[1].y)) { rects->y2 = pts[1].y + 1; continue; }
Fig*iconPixmap: your_lib_area/fig.icon.X
in your .Xdefaults file and copy the file fig.icon.X into directory your_lib_area.
Or you may compile with ``-Bstatic -lXmu -Bdynamic''.
To really solve the problem if you are using OpenWindows 3.0 (X11R4-based Xt), please contact your local Sun office and request the following patches:
Patch i.d. Description 100512-02 4.1.x OpenWindows 3.0 libXt Jumbo patch 100573-03 4.1.x OpenWindows 3.0 undefined symbols when using shared libXmu
A source patch for use with the MIT X11R4 libraries was developed by Conrad Kimball (cek@sdc.boeing.com); it retrofits into R4 some fixes made in R5 to get around this problem. The patch is on export in [1/93] contrib/X11R4_sunos4.1.2_patch_version3.Z.
The other option is to use X11R5 or X11R6.
undo_glue() { list_delete_compound(&objects.compounds, saved_objects.compounds); tail(&objects, &object_tails);
undo_glue() { list_delete_compound(&objects.compounds, saved_objects.compounds); >>> /* HP-UX 8.05 compiler bug fix -- don't ask */ >>> last_action = last_action; tail(&objects, &object_tails);