Drawing the same thing multiple times, with different Z values
-
I would like to draw a polygon at different places in my QGraphicsView/QGraphicsScene, with different Z values. For example, I might need to draw that polygon in the top-right corner with a Z value of
15.f, and also in the bottom-left corner with a Z value of30.f.Do I need to create an QGraphicsItem for each polygon, or is there a smarter way? Ideally, I would like to print that same polygon
ntimes, rather thannpolygons once.Thanks in advance.