mercredi 18 mai 2022

fastdraw64 tuto6 rotate & scale

 



#include "fastdraw.cpp"

BITMAP t800;

float  zoom = 0;

bool s = true;

void draw() {

zoom=zoom+0.03;

float kx = sin(zoom*0.05);

kx = kx*kx;

float ky = 3.14/3*cos(zoom*0.3);

      fd_clear(0,0,100);

            fd_image(t800,t800.bmWidth/2,t800.bmHeight/2,ky,kx,kx,100,200);

 



}


int main() {

t800 = fd_loadimage("c:/dos/t800.bmp");

        fd_window("fd64 tuto4 ",1000,800);

       fd_loop(draw);

return 0;

}

Aucun commentaire:

Enregistrer un commentaire

Remarque : Seul un membre de ce blog est autorisé à enregistrer un commentaire.