Drawing the same thing multiple times, with different Z values
Unsolved
General and Desktop
-
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
n
times, rather thann
polygons once.Thanks in advance.