Author Topic: White lines in Axe  (Read 4339 times)

0 Members and 1 Guest are viewing this topic.

Offline Hot_Dog

  • CoT Emeritus
  • LV12 Extreme Poster (Next: 5000)
  • *
  • Posts: 3006
  • Rating: +445/-10
    • View Profile
White lines in Axe
« on: May 30, 2011, 12:05:25 am »
What command do I use to draw a white line in Axe? 

Offline Runer112

  • Project Author
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2289
  • Rating: +639/-31
    • View Profile
Re: White lines in Axe
« Reply #1 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.
« Last Edit: May 30, 2011, 12:07:42 am by Runer112 »

Offline Aichi

  • LV5 Advanced (Next: 300)
  • *****
  • Posts: 290
  • Rating: +76/-3
    • View Profile
    • Devrays
Re: White lines in Axe
« Reply #2 on: May 30, 2011, 12:09:32 am »
I don't think that there is something better than DrawInv:Line(5,,20,,):DrawInv, unfortunately.

Offline calc84maniac

  • eZ80 Guru
  • Coder Of Tomorrow
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2912
  • Rating: +471/-17
    • View Profile
    • TI-Boy CE
Re: White lines in Axe
« Reply #3 on: May 30, 2011, 12:10:30 am »
If you're drawing multiple white lines, at least you only have to invert twice total.
"Most people ask, 'What does a thing do?' Hackers ask, 'What can I make it do?'" - Pablos Holman