- Member filler::bfs::fill (PNG &img, int x, int y, colorPicker &fillColor, int tolerance, int frameFreq)
- Your code here! You should replace the following line with a correct call to filler::fill with the correct template parameter indicating the ordering structure to be used in the fill.
- Member filler::bfs::fillGradient (PNG &img, int x, int y, RGBAPixel fadeColor1, RGBAPixel fadeColor2, int radius, int tolerance, int frameFreq)
- Your code here! You should replace the following line with a correct call to fill with the correct colorPicker parameter.
- Member filler::bfs::fillGrid (PNG &img, int x, int y, RGBAPixel gridColor, int gridSpacing, int tolerance, int frameFreq)
- Your code here! You should replace the following line with a correct call to fill with the correct colorPicker parameter.
- Member filler::bfs::fillSolid (PNG &img, int x, int y, RGBAPixel fillColor, int tolerance, int frameFreq)
- Your code here! You should replace the following line with a correct call to fill with the correct colorPicker parameter.
- Member filler::dfs::fill (PNG &img, int x, int y, colorPicker &fillColor, int tolerance, int frameFreq)
- Your code here! You should replace the following line with a correct call to filler::fill with the correct template parameter indicating the ordering structure to be used in the fill.
- Member filler::dfs::fillGradient (PNG &img, int x, int y, RGBAPixel fadeColor1, RGBAPixel fadeColor2, int radius, int tolerance, int frameFreq)
- Your code here! You should replace the following line with a correct call to fill with the correct colorPicker parameter.
- Member filler::dfs::fillGrid (PNG &img, int x, int y, RGBAPixel gridColor, int gridSpacing, int tolerance, int frameFreq)
- Your code here! You should replace the following line with a correct call to fill with the correct colorPicker parameter.
- Member filler::dfs::fillSolid (PNG &img, int x, int y, RGBAPixel fillColor, int tolerance, int frameFreq)
- Your code here! You should replace the following line with a correct call to fill with the correct colorPicker parameter.
- Member filler::fill (PNG &img, int x, int y, colorPicker &fillColor, int tolerance, int frameFreq)
- You need to implement this function!
- Member gradientColorPicker::gradientColorPicker (RGBAPixel fadeColor1, RGBAPixel fadeColor2, int radius, int centerX, int centerY)
- Construct your gradientColorPicker here! You may find it helpful to create additional member variables to store things.
- Member gradientColorPicker::operator() (int x, int y)
- Return the correct color here!
- Member Queue< T >::add (const T &theItem)
- Your code here! Hint: this function should call a Queue function to add the element to the Queue.
- Member Queue< T >::dequeue ()
- Your code here! You will need to replace the following line.
- Member Queue< T >::enqueue (const T &newItem)
- Your code here!
- Member Queue< T >::isEmpty () const
- Your code here! You will need to replace the following line.
- Member Queue< T >::peek ()
- Your code here! You will need to replace the following line.
- Member Queue< T >::remove ()
- Your code here! Hint: this function should call a Queue function to remove an element from the Queue and return it. You will need to replace the following line.
- Member solidColorPicker::operator() (int x, int y)
- Return the appropriate color here! You will have to replace the following line.
- Member solidColorPicker::solidColorPicker (RGBAPixel fillColor)
- Initialize a new solidColorPicker here!
- Member Stack< T >::add (const T &theItem)
- Your code here! Hint: this should call another Stack function to add the element to the Stack.
- Member Stack< T >::isEmpty () const
- Your code here! You will need to replace the following line.
- Member Stack< T >::peek ()
- Your code here! You will need to replace the following line.
- Member Stack< T >::pop ()
- Your code here! You will have to replace the following line.
- Member Stack< T >::push (const T &newItem)
- Your code here!
- Member Stack< T >::remove ()
- Your code here! Hint: this should call another Stack function to remove an element from the Stack and return it. You will need to replace the following line.