
4 changed files with 71 additions and 4 deletions
@ -0,0 +1,26 @@
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
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; |
||||
} |
||||
/* -------------------------------------------------------------------- */ |
||||
/* -------------------------------------------------------------------- */ |
Loading…
Reference in new issue