hey so I'm having trouble getting triangles in all four corners of the screen and this is what i have for the top left corner of the screen (the x for the picture is 1024 and the y is 1280)
for (int x = 0; x<=90 ; x++)
{
for (int y=0 ;y<=90-x ; y++)
{
bg.setColorAt(x,y,Color.RED);
}
}
