Omnimaga

Calculator Community => TI Calculators => Axe => Topic started by: Hot_Dog on May 30, 2011, 12:05:25 am

Title: White lines in Axe
Post by: Hot_Dog on May 30, 2011, 12:05:25 am
What command do I use to draw a white line in Axe? 
Title: Re: White lines in Axe
Post by: Runer112 on May 30, 2011, 12:06:44 am
Currently: none.

You could draw one like this:
Code: [Select]
DrawInv
Line()
DrawInv

But that's a lot of extra time spent inverting the buffer twice for a simple line.
Title: Re: White lines in Axe
Post by: Aichi on May 30, 2011, 12:09:32 am
I don't think that there is something better than DrawInv:Line(5,,20,,):DrawInv, unfortunately.
Title: Re: White lines in Axe
Post by: calc84maniac on May 30, 2011, 12:10:30 am
If you're drawing multiple white lines, at least you only have to invert twice total.