Skip to content

Commit

Permalink
Merge pull request convict-git#72 from himanshu2047/change
Browse files Browse the repository at this point in the history
small fix
  • Loading branch information
sakshi1603 authored Nov 5, 2020
2 parents 0ada026 + 70b9e32 commit 67e573c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/processing/CurveBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,13 @@ public static BoardObject eraseCurve(

ArrayList<Pixel> pixel = new ArrayList<Pixel>();

//Give each channel white intensity
int r = 255;
int g = 255;
int b = 255;

for(int i = 0; i < pixelSize; i++)
{
//Give each channel white intensity
int r = 255;
int g = 255;
int b = 255;

//White intensity object
Intensity whiteIntensity = new Intensity(r,g,b);
Expand Down

0 comments on commit 67e573c

Please sign in to comment.