Skip to content

Commit

Permalink
cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
HanSolo committed Apr 5, 2016
1 parent e7be183 commit 99a367a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/eu/hansolo/medusa/tools/ConicalGradient.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public ConicalGradient(final Stop... STOPS) {
public ConicalGradient(final List<Stop> STOPS) {
this(0, 0, ScaleDirection.CLOCKWISE, STOPS);
}
public ConicalGradient(final double CENTER_X, final double CENTER_Y, final Stop... STOPS) { this(CENTER_X, CENTER_Y, ScaleDirection.CLOCKWISE, STOPS); }
public ConicalGradient(final double CENTER_X, final double CENTER_Y, final ScaleDirection DIRECTION, final Stop... STOPS) {
this(CENTER_X, CENTER_Y, 0.0, DIRECTION, Arrays.asList(STOPS));
}
Expand Down

0 comments on commit 99a367a

Please sign in to comment.