libtthimage/Lib/turtle.c

63 lines
1.3 KiB
C
Raw Normal View History

2022-06-26 11:06:35 +02:00
/*
turtle.c
---------------
*/
#include <stdio.h>
#include <math.h>
2022-07-07 12:52:00 +02:00
#include "../tthimage.h"
2022-06-26 11:06:35 +02:00
/*::------------------------------------------------------------------::*/
int
Image_turtle_infos(Image_Desc *img, int flags)
{
#if DEBUG_LEVEL
fprintf(stderr, "Image turtle infos: flags = %04x\n", flags);
#endif
if ( flags & 1 )
2023-09-28 23:50:23 +02:00
Image_dump_descriptor(img, "turtle infos");
2022-06-26 11:06:35 +02:00
return FUNC_IS_ALPHA;
}
/*::------------------------------------------------------------------::*/
/*
* changer la couleur de l'encre de la tortue.
*
* Q: pourquoi le canal alpha n'est pas pris en compte ?
* A: parce que :)
*/
int
Image_turtle_setcolors(Image_Desc *img, int r, int g, int b)
{
img->rt = r; img->gt = g; img->bt = b;
img->at = 0; /* ? bonne valeur ? */
return FUNC_IS_ALPHA;
}
/*::------------------------------------------------------------------::*/
int
Image_turtle_move(Image_Desc *img, double xt, double yt)
{
img->xt = xt;
img->yt = yt;
2023-09-28 23:50:23 +02:00
fprintf(stderr, ">>> %s ( %p %f %f )\n", __func__, img, xt, yt);
2022-06-26 11:06:35 +02:00
return FUNC_NOT_FINISH;
}
/*::------------------------------------------------------------------::*/
int
Image_turtle_draw(Image_Desc *img, double xt, double yt)
{
2023-09-28 23:50:23 +02:00
fprintf(stderr, ">>> %s ( %p %f %f )\n", __func__, img, xt, yt);
2022-06-26 11:06:35 +02:00
return FUNC_NOT_FINISH;
}
/*::------------------------------------------------------------------::*/