00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef NEATO_H
00019 #define NEATO_H
00020
00021 #ifdef HAVE_CONFIG_H
00022 #include "config.h"
00023 #endif
00024
00025 #define MODEL_SHORTPATH 0
00026 #define MODEL_CIRCUIT 1
00027 #define MODEL_SUBSET 2
00028
00029 #define MODE_KK 0
00030 #define MODE_MAJOR 1
00031 #define MODE_HIER 2
00032 #define MODE_IPSEP 3
00033
00034 #define INIT_ERROR -1
00035 #define INIT_SELF 0
00036 #define INIT_REGULAR 1
00037 #define INIT_RANDOM 2
00038
00039 #include "render.h"
00040 #include "pathplan.h"
00041 #include "neatoprocs.h"
00042 #include "adjust.h"
00043
00044 #endif