Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!lll-crg!caip!brl-adm!brl-smoke!gwyn From: gwyn@brl-smoke.ARPA (Doug Gwyn ) Newsgroups: net.bugs.usg Subject: cip-pic incompatibility Message-ID: <3279@brl-smoke.ARPA> Date: Sun, 24-Aug-86 18:45:00 EDT Article-I.D.: brl-smok.3279 Posted: Sun Aug 24 18:45:00 1986 Date-Received: Mon, 25-Aug-86 19:26:40 EDT Organization: Ballistic Research Lab (BRL), APG, MD. Lines: 25 "cip" will put a file that it can't "get". Workaround for DMD Text+Graphics Release 1.2 or 1.3, source file cip/pic.c: writePIC(t,f,b) ... { ... switch (t->type) { case CIRCLE: { ... if ( t->otherValues.radius != 0 ) /* DAG -- added */ fprintf(f,"circle rad %d at %d,%d\n", ... case BOX: { ... if ( t->bb.corner.x != t->bb.origin.x && t->bb.corner.y != t->bb.origin.y ) /* DAG -- added */ fprintf(f,"box ht %d wid %d with .nw at %d,%d %s\n", ... case ELLIPSE: { ... if ( t->otherValues.ellipse.ht != 0 && t->otherValues.ellipse.wid != 0 ) /* DAG -- added */ fprintf(f,"ellipse ht %d wid %d at %d,%d\n", ...