Repeat multiple times one dc.fillPolygon?


Hi,
is there any way to render a dc.fillPolygon object multiple times?

My dc.fillPolygon:

dc.setColor(Graphics.COLOR_RED, Graphics.COLOR_TRANSPARENT);
dc.fillPolygon(
[
[x + 132, y - 25],
[x + 154, y - 25],
[x + 151, y - 20],
[x + 129, y - 20]
]);

They need this drawn object to show me 7x.

I used this:

for (var i = 0 as integer; i < 7; i++)
{

, but unsuccessfully.

Thanks for the information.