#define MAX_CODEGENS 100
-static char *defaultlinestyle[3] = { "solid\0", "setlinewidth\0001\0", 0 };
int Obj;
static attrsym_t *G_peripheries;
-static point exch_xy(point p)
-{
- int t;
- t = p.x;
- p.x = p.y;
- p.y = t;
- return p;
-}
-
-static pointf exch_xyf(pointf p)
-{
- double t;
- t = p.x;
- p.x = p.y;
- p.y = t;
- return p;
-}
+static char *defaultlinestyle[3] = { "solid\0", "setlinewidth\0001\0", 0 };
/* parse_layers:
* Split input string into tokens, with separators specified by
extern void epsf_init(node_t * n);
extern void epsf_free(node_t * n);
extern void epsf_gencode(GVC_t * gvc, node_t * n);
+ extern point exch_xy(point p);
+ extern pointf exch_xyf(pointf p);
extern shape_desc *find_user_shape(char *);
extern box flip_rec_box(box b, point p);
extern point flip_pt(point p, int rankdir);
return p0;
}
+point exch_xy(point p)
+{
+ int t;
+ t = p.x;
+ p.x = p.y;
+ p.y = t;
+ return p;
+}
+
+pointf exch_xyf(pointf p)
+{
+ double t;
+ t = p.x;
+ p.x = p.y;
+ p.y = t;
+ return p;
+}
+
/* from Glassner's Graphics Gems */
#define W_DEGREE 5