forked from tTh/FloatImg
27 lines
784 B
C
27 lines
784 B
C
|
/*
|
||
|
RECURSION 'QUADTREE' SUR LES IMAGES
|
||
|
-----------------------------------
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <math.h>
|
||
|
|
||
|
#include "../floatimg.h"
|
||
|
|
||
|
/* -------------------------------------------------------------------- */
|
||
|
/* may be we need some private variables ? */
|
||
|
/* -------------------------------------------------------------------- */
|
||
|
/* nouveau 29 avril 2021, pendant un autre masque-flamme coronavidique */
|
||
|
|
||
|
int fimg_recursion_proto(FloatImg *src, FloatImg *dst, int notused)
|
||
|
{
|
||
|
|
||
|
#if DEBUG_LEVEL
|
||
|
fprintf(stderr, ">>> %s ( %p %p %d )\n", __func__, src, dst, notused);
|
||
|
#endif
|
||
|
|
||
|
return -1;
|
||
|
}
|
||
|
/* -------------------------------------------------------------------- */
|
||
|
/* -------------------------------------------------------------------- */
|