This commit is contained in:
Sebastian Cabrera 2019-04-30 00:15:28 -04:00
parent 8ba36e12d4
commit 3133ae8457
2 changed files with 2 additions and 4 deletions

View file

@ -25,10 +25,9 @@ public class Context {
}
public static void draw(int x, int y)
{
//g = bufferedImage.createGraphics();
{
int size = Window.sizeSlider.getValue();
Color c = new Color(rng.nextInt(256), rng.nextInt(256), rng.nextInt(256), Window.opacitySlider.getValue());
g.setColor(c);

View file

@ -3,7 +3,6 @@ package bz.bronze.painter;
public class Painter {
private static String title = "Painter";
public static boolean isRunning;
public static void init()
{