// fd64 tuto 2
#include "fastdraw.cpp"
void draw() {
fd_clear(0,0,100); // clear screen
fd_ellipse(mouseX,mouseY,80,80,rgb(255,0,0)); // drawing ellipse using mouse coordinates
}
int main() {
fd_window("fd64 tuto2",800,600); // create fastdraw window
fd_loop(draw); // call draw function
return 0;
}
Aucun commentaire:
Enregistrer un commentaire
Remarque : Seul un membre de ce blog est autorisé à enregistrer un commentaire.