home *** CD-ROM | disk | FTP | other *** search
- /**
- GRAB Graph Layout and Browser System
-
- Copyright (c) 1986, 1988 Regents of the University of California
- Copyright (c) 1989, Tera Computer Company
- **/
-
- /* header file for clipping */
-
- #ifndef clip_h
- #define clip_h
-
- #include "digraph.h"
-
- /* find the proper shift distance for an edge with ordinality ord */
- #define ORD_TO_SHIFT(ord) \
- ( ((ord) / 2 * HALF_CHAR) * ( ( ((ord) - 1) % 2 == 0) ? -1 : 1))
-
- #endif
-