Permalink
Browse files

add draw comment

  • Loading branch information...
RickMcConney committed Mar 23, 2018
1 parent a8ef9d2 commit da7a103f46cd8e91ce820292f782cb1b99b9b665
Showing with 3 additions and 1 deletion.
  1. +3 −1 PenPlotter/PenPlotter.pde
@@ -594,6 +594,8 @@ void initLogging()
public void draw()
{
background(backgroundColor);
+ // I put the if(draw) arround all the drawing routines see if just placing it around the drawing of the image
+ // below is enough
if(draw)
{
@@ -616,7 +618,7 @@ void initLogging()
drawGondola();
-
+ // try just skipping the image draw here
if (oimg != null)
{
image(oimg, imageX, imageY, imageWidth, imageHeight);

0 comments on commit da7a103

Please sign in to comment.