Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. //Flood fill pseudo
  2.  
  3. void floodfill(int x,int y,int target, int replacement){
  4. int node = getcolor(x,y);
  5. while(node!=target){
  6.  
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement