- Moved the attack path display logic to output.c completely.

- Adjusting output slightly.
This commit is contained in:
ccremers
2004-07-13 12:19:03 +00:00
parent 6fa0f3904d
commit 72be9a6441
3 changed files with 9 additions and 3 deletions

View File

@@ -572,7 +572,7 @@ void graphNode (const System sys)
printf ("#%i\"", sys->traceRun[index]);
if (rd->type == CLAIM)
{
printf (",color=green");
printf (",shape=house,color=green");
}
}
/* a choose? */
@@ -620,3 +620,9 @@ void graphEdgePath (const System sys, const int length, const char* edgepar)
i++;
}
}
void graphPath (const System sys, int length)
{
graphNodePath (sys,length,"shape=parallelogram,style=bold,color=red");
graphEdgePath (sys,length-1,"style=bold,color=red");
}