//! file="amma/StdType/Entity/Directio.hh" //! lib=Mentity //! userlevel=Default //! author="Radek Marik" //! docentry="Image.Pixel Representations" //! rcsid="$Id: Directio.hh,v 1.5 1999/03/29 11:15:29 ees1cg Exp $" //! date="06/08/95" /* IAPS - Image analysis program system - include file File name : Direction.hh Deskription: direction Last change: 26.10.1992 Author : R. Marik Uses inc. : _____________________________________________________________________ */ #ifndef DIRECTION_HH #define DIRECTION_HH /*-------------------------------------------------------------------------*/ /**************** DirectionT ***********************************************/ /*-------------------------------------------------------------------------*/ enum DirectionT { // Direction typedef for general use RIGHT = 64, UP_RIGHT = 96, UP = 128, UP_LEFT = 160, LEFT = 192, DOWN_LEFT = 224, DOWN = 0, DOWN_RIGHT = 32 }; #endif /* IAPS - Image analysis program system. End of include file Direction.hh */