00001
#ifndef _VOLUME_STUFF_H
00002
#define _VOLUME_STUFF_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
#include <volume_io.h>
00020
#include <bicpl/colour_coding.h>
00021
00022 typedef enum {
FOUR_NEIGHBOURS,
EIGHT_NEIGHBOURS }
Neighbour_types;
00023
00024 typedef struct
00025
{
00026 int x,
y;
00027 Volume src_volume;
00028 Volume dest_volume;
00029 General_transform transform;
00030 }
resample_struct;
00031
00032
#ifndef public
00033 #define public extern
00034 #define public_was_defined_here
00035
#endif
00036
00037
#include <bicpl/vol_prototypes.h>
00038
00039
#ifdef public_was_defined_here
00040
#undef public
00041
#undef public_was_defined_here
00042
#endif
00043
00044
#endif