remove useless file
This commit is contained in:
parent
cced0a8811
commit
6744a631c1
62
Lib/warp3.c
62
Lib/warp3.c
@ -1,62 +0,0 @@
|
||||
/*
|
||||
warp3.c
|
||||
---------------
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
#include "../tthimage.h"
|
||||
|
||||
/*::------------------------------------------------------------------::*/
|
||||
/*
|
||||
* travail basé sur un PDF dont l'URL a été postée dans la
|
||||
* tribune de la buvette.
|
||||
*
|
||||
* L'auteur est Gernot Hoffmann.
|
||||
*/
|
||||
int
|
||||
Image_interpolate_0(Image_Desc *src, Image_Desc *dst, int ox, int oy)
|
||||
{
|
||||
int x, y;
|
||||
int x2, y2, foo;
|
||||
|
||||
fprintf(stderr, "*** Image_interpolate_0: work in progress...\n");
|
||||
|
||||
if ( src == dst )
|
||||
{
|
||||
fprintf(stderr, "Image interpolate_0: can't overwrite, sorry\n");
|
||||
return IMG_OVERWRITE;
|
||||
}
|
||||
|
||||
/*
|
||||
@@@@@@@@@@@@@@
|
||||
PUTAIN SA RACE
|
||||
La police du PDF est pas sortie à l'impression :(
|
||||
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
Et comme le code est incomplet et en Pascal, je ne
|
||||
sais pas trop quoi en faire. Beueueueh.
|
||||
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||
*/
|
||||
|
||||
|
||||
return FUNC_NOT_FINISH;
|
||||
}
|
||||
/*::------------------------------------------------------------------::*/
|
||||
/* new 11 janvier 2009 - avenue St Exupery */
|
||||
int
|
||||
Image_interpolate_2(Image_Desc *src, Image_Desc *dst, RGBA *rgba)
|
||||
{
|
||||
int x, y;
|
||||
|
||||
if (NULL==rgba)
|
||||
{
|
||||
fprintf(stderr, "Using default RGBA in %s...\n", __func__);
|
||||
}
|
||||
|
||||
return FULL_NUCKED;
|
||||
}
|
||||
/*::------------------------------------------------------------------::*/
|
||||
/*
|
||||
* voir aussi les modules scale.c, zoom.c et warp[0|1|2].c
|
||||
*/
|
||||
/*::------------------------------------------------------------------::*/
|
Loading…
Reference in New Issue
Block a user