#ifndef H_TRUSS_TO_EPS_H #define H_TRUSS_TO_EPS_H #include "truss.h" #define TR_PLOT_WITH_NO_LABELS 0 #define TR_PLOT_WITH_LABELS 1 /* Receives a pointer to a Truss data structure (before or * after deformation.) Writes a PostScript file of a drawing * of the truss. Arguments: truss [In] Pointer to a truss structure (declared in truss.h). epsfile [In] Name of the output file. labels [In] If TR_PLOT_WITH_LABELS, adds node and link labels on the drawing. If TR_PLOT_WITH_NO_LABELS suppresses node and link lables. */ void truss_to_eps(struct truss *truss, char *epsfile, int labels); #endif /* H_TRUSS_TO_EPS_H */