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

@ -26,9 +26,8 @@ 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

@ -4,7 +4,6 @@ public class Painter {
private static String title = "Painter";
public static boolean isRunning;
public static void init()
{
Window w = new Window(title);