Skip to content

Commit

Permalink
Removed debugging messages
Browse files Browse the repository at this point in the history
They were clogging up the console and we don't need to see them during the presentation.
  • Loading branch information
jacob-ressler committed Apr 25, 2019
1 parent 1df1fd9 commit e06d07a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/gui/TreeCanvas.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import data.Branch;
import data.FractalTree;
import data.ParamManager;
import utilities.Debug;

public class TreeCanvas extends JPanel {
public static BufferedImage img;
Expand Down Expand Up @@ -98,8 +97,7 @@ protected void paintComponent(Graphics g) {

// draw the next frame based on the current frame
private void drawNextFrame(Graphics2D g2, Branch[] branches) {
Debug.log(String.valueOf(branches.length));
// TODO: feed custom colors to this based on Parameters
//Debug.log(String.valueOf(branches.length));
int h = getHeight();
int w = ParamManager.xOffset;
for (Branch b : branches) {
Expand Down

0 comments on commit e06d07a

Please sign in to comment.