I am trying to implement floodfill in a QGraphicsScene environment where user can draw shapes and freehand lines.
(I need to use QgraphicsScene for abilities such as dragging/resizing certain items)

I am thinking about two approaches:

  1. Represent drawings as path items. Find an intersecting closed path around a given point (if it exists)
  2. Extend a QGraphicsItem, override its paint() method to paint on a QImage within. Apply pixel transformation on QImage for floodfill (usual algorithm)

Now, which one of the above methods would be more efficient?

One additional point about approach (1) is that there can be a large number of paths if the user actually a free hand sktching on the scene. If approach (1) is more efficient, what is the basic logic behind iterating paths around a given point to find a closed intersection?

link|improve this question

69% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.