Skip to content

Commit

Permalink
Remove commented out light sources in LightSourceCreator
Browse files Browse the repository at this point in the history
  • Loading branch information
kwvanderlinde committed Nov 2, 2023
1 parent 27a95c2 commit b470610
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@ private static LightSource createLightSource(String name, double radius, double
new GUID(),
LightSource.Type.NORMAL,
false,
List.of(
// new Light(0, 5, arcAngle, new DrawableColorPaint(new Color(255, 255, 0, 50)))
new Light(ShapeType.CIRCLE, 0, radius, arcAngle, null, 100, false, false)));
List.of(new Light(ShapeType.CIRCLE, 0, radius, arcAngle, null, 100, false, false)));
}

private static LightSource createD20LightSource(String name, double radius, double arcAngle) {
Expand All @@ -75,7 +73,6 @@ private static LightSource createD20LightSource(String name, double radius, doub
LightSource.Type.NORMAL,
false,
List.of(
// new Light(0, 5, arcAngle, new DrawableColorPaint(new Color(255, 255, 0, 50)))
new Light(ShapeType.CIRCLE, 0, radius, arcAngle, null, 100, false, false),
new Light(
ShapeType.CIRCLE,
Expand Down

0 comments on commit b470610

Please sign in to comment.