0 Members and 1 Guest are viewing this topic.
Home screen games could work between all calc models actually. Mana Force somewhat does, although on the CSE there is a big part of the screen that is unused through the game. The project seems interesting by the way.
Looks nice. So I guess that you will use different files for each calc after all?
you start from 0,0If you want that to be in the upper left corner like with other progs, you will have to make all y-values negative when drawingNow, basic can't use the right-most column and the bottom-most row, so what you'll want to do is0->Xmin94->Xmax-62->Ymin0->Ymaxand then you can do stuff likeLine(0,0,10-10) which will draw a line from 0,0 to 10,10
I just saw that it is for the CSE and I have no idea what the screen dimensions are there, sorry >.<
so then the xmax should be something like 318 and ymin something like -238 i believe, but I don't have a CSE to test anything >.<
The size of the (usable) graph screen on non-color calculators is 95*63 pixels, which is 1*1 smaller than the total screen size of 96*64 pixels. A typical window range for a 1:1 ratio of pixels to points is [0..94]*[0..62].The size of the (usable) graph screen on the 84+CSE is 265*165 pixels, which is a fair amount smaller than the total screen size of 320*240 pixels. A typical window range for a 1:1 ratio of pixels to points is [0..264]*[0..164].Not sure if this information is even helpful, but I'll just dump it here anyways.