I am in the process of designing a ti-83+ Dr. Bacon logo. It is almost done, except that I have encountered a strange problem in the last few lines of code. I'm sure it's just a mistake that I have repeatedly overlooked, but I am quite stumped.
So far, the logo thing looks like this:
And I want the squiggly thing on the bottom to be a piece of bacon. The end part of the simple code that I wrote that deals with the strip of bacon goes something like this:
Code:
Just like to not that those are not the only two Line(s there, but there are like twenty all formatted the same way.
Everything has worked well up until this point. There was supposed to be a five line skip, and then the same squiggly 5 pixels lower down. Any ideas?
Thanks,
~Dr. Bacon
So far, the logo thing looks like this:

And I want the squiggly thing on the bottom to be a piece of bacon. The end part of the simple code that I wrote that deals with the strip of bacon goes something like this:
Code:
:-3→X
:0→I
:0→J
:While I≤3
:While J≤5
:Line(5,23-X,17,28-X
:Line(17,28-X,26,29-X
:X+1→X
:J+1→J
:End
:X+5→X
:I+1→I
:End
Just like to not that those are not the only two Line(s there, but there are like twenty all formatted the same way.
Everything has worked well up until this point. There was supposed to be a five line skip, and then the same squiggly 5 pixels lower down. Any ideas?
Thanks,
~Dr. Bacon