forked from tTh/FloatImg
23 lines
402 B
C
23 lines
402 B
C
|
/*
|
||
|
* metriques.c
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
extern int verbosity;
|
||
|
|
||
|
/* -------------------------------------------------------------- */
|
||
|
|
||
|
int get_float_metric(FloatImg *pimg, float *where, int whot)
|
||
|
{
|
||
|
|
||
|
#if DEBUG_LEVEL
|
||
|
fprintf(stderr, ">>> %s ( %p %f %d )\n", __func__, pimg, where, whot);
|
||
|
#endif
|
||
|
|
||
|
*where = 0;
|
||
|
|
||
|
return -1;
|
||
|
}
|
||
|
/* -------------------------------------------------------------- */
|