/* * SPECIAL EFFECTS * * Du code bien cracra / tTh / Tetalab */ #include #include #include #include #include #include "fonctions.h" /* -------------------------------------------------------------- */ /* global vars from main */ extern int verbosity; /* -------------------------------------------------------------- */ /* -------------------------------------------------------------- */ int brotche_rand48_a(FloatImg *fimg, float ratio, float mval) { int nbpix, todo, foo; int x, y; float fval; nbpix = fimg->width * fimg->height; todo = (int)((float)nbpix * ratio); if (verbosity > 1) { fprintf(stderr, "%s: ratio %f nbpix %d todo %d\n", __func__, ratio, nbpix, todo); } for (foo=0; foowidth; y = rand() % fimg->height; fimg_plot_rgb(fimg, x, y, fval, fval, fval); } return 0; } /* -------------------------------------------------------------- */ int brotche_rand48_b(FloatImg *fimg, float ratio, float mval) { int nbpix, todo, foo; int x, y; float fval; nbpix = fimg->width * fimg->height; todo = (int)((float)nbpix * ratio); if (verbosity > 1) { fprintf(stderr, "%s: ratio %f nbpix %d todo %d\n", __func__, ratio, nbpix, todo); } for (foo=0; foowidth-2)); y = rand() % fimg->height; fimg_plot_rgb(fimg, x-1, y, fval, 0.0, 0.0); fimg_plot_rgb(fimg, x , y, 0.0, 0.0, fval); fimg_plot_rgb(fimg, x+1, y, 0.0, fval, 0.0); } return 0; } /* -------------------------------------------------------------- */