11 posts
Posted 15 January 2016 - 11:01 PM
It would be really useful when using setCursorPos.
3057 posts
Location
United States of America
Posted 15 January 2016 - 11:35 PM
Top Left is (1, 1)
Bottom Right is term.getSize()
term.clear()
term.setCursorPos( 1, 1 )
term.write( "A" )
term.setCursorPos( term.getSize() )
term.write( "B" )
275 posts
Location
Turkey
Posted 15 January 2016 - 11:36 PM
1,1 is top left
51,19 is bottom right (With the default size)
I think you can figure out the rest.
Edit: got ninja'd :(/>
Edited on 15 January 2016 - 10:37 PM
11 posts
Posted 15 January 2016 - 11:44 PM
Thanks.