From f9748632b8bc33a3b91cad1392aac23c6fe47ac1 Mon Sep 17 00:00:00 2001 From: Aidan Ross Date: Thu, 25 May 2023 08:19:48 -0400 Subject: Renamed everything to be better and fixed arches on SongPlayer --- src/fallTest/Block.java | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/fallTest/Block.java (limited to 'src/fallTest/Block.java') diff --git a/src/fallTest/Block.java b/src/fallTest/Block.java deleted file mode 100644 index ab2f902..0000000 --- a/src/fallTest/Block.java +++ /dev/null @@ -1,27 +0,0 @@ -//glowing block of color c (jfx node) - -package fallTest; - -import javafx.scene.effect.BlurType; -import javafx.scene.effect.DropShadow; -import javafx.scene.paint.Color; -import javafx.scene.shape.Rectangle; - -public class Block extends Rectangle -{ - public Block(Color c, double a, double b, int r) - { - super(); - DropShadow dropShadow = new DropShadow(); - dropShadow.setRadius(200.0); - dropShadow.setColor(c); - dropShadow.setBlurType(BlurType.GAUSSIAN); - - super.setFill(c); - super.setWidth(a); - super.setHeight(b); - super.setArcHeight(r); - super.setArcWidth(r); - super.setEffect(dropShadow); - } -} \ No newline at end of file -- cgit v1.2.3