Path: utzoo!attcan!utgpu!news-server.csri.toronto.edu!mailrus!uwm.edu!psuvax1!rutgers!aramis.rutgers.edu!remus.rutgers.edu!emerald.rutgers.edu!clong From: clong@emerald.rutgers.edu (Chris Long) Newsgroups: comp.lang.pascal Subject: TP5.5 FloodFill Message-ID: Date: 29 Sep 90 18:48:10 GMT Organization: Rutgers Univ., New Brunswick, N.J. Lines: 21 Has anyone else had problems with TP5.5's FloodFill? I do a SetColor(2); for n:=0 to 20 do Line(n*20,0,n*20,400); for n:=0 to 20 do Line(0,n*20,400,n*20); SetColor(3); for n:=0 to 10 do FloodFill(n*20+10,10,2); SetColor(0); for n:=0 to 10 do FloodFill(n*20+10,10,2); It draws the grid nicely and does the first set of fills, but the next set of fills does nothing. -Chris