Skip to content

Commit

Permalink
Make color ctor public
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinShalit committed Jan 4, 2020
1 parent 32c6244 commit 18e0953
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ public class Color {
* @param green Green value (0-1)
* @param blue Blue value (0-1)
*/
Color(double red, double green, double blue) {
public Color(double red, double green, double blue) {
this.red = roundAndClamp(red);
this.green = roundAndClamp(green);
this.blue = roundAndClamp(blue);
Expand Down

0 comments on commit 18e0953

Please sign in to comment.