Information from source codes

../src/lmrc2bild.c:

bildFile.h

/*
# bildFile.h : $Revision$  
# $Date$ 
# Created by $Author$
# Usage : bildFile.h 
# Attention
#   $Loccker$
#  	$State$ 
#
*/
/* $Log$ */
#ifndef BILD_FILE_H 
#define BILD_FILE_H 

#include 
#include "mrcImage.h"

/* constant begin */
typedef enum lmrc2bildMode {
	lmrc2bildModeArrows=0,
	lmrc2bildModeSpheres=1
} lmrc2bildMode;


/* constant end */

/* struct begin */
typedef struct lmrc2bildInfo {
	float zoom;
	float color[3];

	// For Arrow
	float r1; 
	float r2;
	float rho;

	// skip
	int flagSkip;
	int skipX;
	int skipY;
	int skipZ;
} lmrc2bildInfo;

/* struct end */

#ifdef __cplusplus
extern "C" {
#endif

/* prototype begin */

extern void lmrc2bildUsage(FILE* fpt);
extern void lmrc2bild(FILE* fpt, mrcImage* in, lmrc2bildInfo linfo, int mode);
extern void lmrc2bildArrows(FILE* fpt, mrcImage* in, lmrc2bildInfo linfo, int mode);
extern void lmrc2bildSpheres(FILE* fpt, mrcImage* in, lmrc2bildInfo linfo, int mode);

/* prototype end */

#ifdef __cplusplus
};
#endif

#endif  /* BILD_FILE_H */