ticalc.org
Basics Archives Community Services Programming
Hardware Help About Search Your Account
   Home :: Programming :: Program Ideas :: Graphics Program Ideas
Graphics Program Ideas

Post your ideas for new graphics programs here, or build on ideas posted by other visitors.

  Reply to this item

???
Jason Hyun  Account Info

Is it possible to make your own symbols for the Calculator (I have ti-84 SE)

     31 May 2006, 01:32 GMT


Re: ???
fists_h  Account Info

Not without graphing/pictures/line drawing. Or get Omnicalc [FLASH app] and use the Windows Application 'Font Creator' and send your custom font to your calc.

Also, go 84+SE! Although I think I like the LOOK of the standard 84+ better...?

     18 December 2006, 02:54 GMT

Fractals
jwymbs  Account Info

Hi I'm not sure if this is the right place for this, but I was wondering how you could program the Mandlebrot set (or any other cool fractal), if it is even possible on a calculator.
Please e-mail me at jwymbs23@gmail.com if you have any ideas.

     24 February 2007, 02:30 GMT

Graphics Program Ideas: B.A.S.I.C Image Show??
Vminch Account Info

So suppose I have this prgm in BASIC, and it needs to cycle through pics. There's only 7, which sucks, but what about those GDBs you can save drawings as? How do those work? Are they the same as pics except in a different format? If that's true, can I use both pics and GDBs in a prgm?
That's not my problem though. Given that I have pictures (only 7 though!!!), I might I found a way to cycle them. Here's code:
:
:ClrHome
:Output(3,4,"SticDethh")
:Pause
:ClrDraw
:AxesOff
:CoordOff
:ExprOff
:LabelOff
:GridOff
:0->X
:
:Lbl 1
:ClrDraw
:RecallPic 1
:X+1->X
{My first problem comes here... Should I use the first version or the second?}
*Version 1
[:If X=/30:Goto 1
:If X=30:Goto 2]
*Version 2 (does it even work?)
[:For(X,30,2)
:Goto 1]
:End
:
:Lbl 2
:ClrDraw
:RecallPic 2
:X+1->X
:Version 1: Replace 30 with 60, and add 30 per new Label while progressing to the next pic too, and the Goto at the
:End
:---
:

Parameters not that great, but can you guys tell me which Version (1,2) is better and if you have any further ideas (or questions) about it.
---Vminch Out

     15 May 2007, 13:25 GMT

Re: Graphics Program Ideas
graphmastur Account Info

I think that someone needs to make a 3d program that acts like this:
0
00 000000000000000000000000
0 0
0 0
0 0
0 0
0 0
0 0
000000000000000000000000000

It could use a list for the data and wall height, and could use another list to do directions. The first list would be in order, but the second list would match up with the dimmensions +2. It would have the (start location x) and (start location y) extra in the second list. The one above would be like this with L1 and L2 as the two lists.
The second list would then record movements like this:
8 1 2
7 0 3
6 5 4

@ = location
. = empty
0 = wall of various height
x= not used in list1 but in list 2
L1={x ,x ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0}
L2={3 ,1 ,0 ,4 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,3 ,5 ,5 ,5 ,5 ,5 ,5 ,5 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,7 ,1 ,1 ,1 ,1 ,1 ,1 ,1 ,3 ,2}

..0........................
00.000000000000000000000000
0.........................0
0.........................0
0...........@.............0
0.........................0
0.........................0
0.........................0
000000000000000000000000000

If you understand that, try to make a program. If not(or so) just comment

     16 February 2008, 16:55 GMT

Re: Graphics Program Ideas
cameron cameron  Account Info

help!
i have to write a program for my calculus class on my 83+
we have to make a picture using polar equations..
any suggestions or advise on what to draw and how to get started?

     5 May 2008, 01:56 GMT

basic Graphics
piano_mandrew Account Info

It's a pretty cool graphic for your TI in basic, just set variables for the linear coordinates, and change them slightly every time the process is repeated. I'll just show you one of the graphics, it looks pretty cool:

:ClrDraw
:16—>Ø
:7.5—>Z
:Lbl A
:If Ø<¯50
:Pause
:If Ø<¯50
:Stop
:Line(Ø,Ø,Z,¯Z)
:Line(Ø,Ø,¯Z,Z)
:Line(¯Ø,¯Ø,¯Z,Z)
:Line(¯Ø,¯Ø,Z,¯Z)
:Ø-1—>Ø
:Z-1.4—>Z
:Goto A

This same thing can be done with circles or tangents, and can be done using the randint function... just for some ideas. If you come up with anything cool, or have any advice, feel free to reply, or e-mail me @ piano_mandrew@yahoo.com. Thanks!

     22 May 2008, 20:25 GMT

Re: Graphics Program Ideas
bart janssens Account Info

i want to make something like a beginscreen for my program's. Somthing like the basic programs on the IT-84.If it is possible pleas let me know.

     28 July 2008, 19:02 GMT

MSPaint?
RomeoKinelli Account Info
(Web Page)

I am working on a program that looks like Microsoft Paint and works like it too (Please don't sue me, Microsoft! I gave you credit). So far, you can freehand draw, spraypaint, save, and load, but I can't figure out how to fill in an area. Is it even possible? And is it possible to draw circles (I think it is), to erase (Again, I think it is), and also to make it so that when you press enter then it stops drawing? I use the getkey function.

     12 January 2009, 21:13 GMT

Re: Graphics Program Ideas
Tony Cagliano  Account Info

I am working on a small program that functions as a partial OS. One of the things I would like to include is a section where you can input a name of a program, limited to 8 characters, store it to Str6, and the coding that the user wishes to place in the program, and store that to Str7. The prgm would then test if the name (Str6) has already been used, and if so, ask for another name. If not, it will create a program with the name you specified in Str6, containing the coding you put in Str7. I am aware that this can only be done in asm/hex, and while I am good at Basic, I am horrible at asm/hex. If someone could find the time to help me with the hex for a program that does this, I would appreciate it. Also, please include your name so that I may credit you appropriately.

     4 February 2009, 18:59 GMT

Re: Graphics Program Ideas
abzolute0  Account Info
(Web Page)

I am currently working on programing a Pokemon version for the ti-82 and ti-84 series and i need some help creating tile maps... I have xLIB but unfortunately I don't want to write it in TI-Basic is there anyone who can give some pointers in creating tile maps using ASM?

     2 May 2009, 14:09 GMT

Re: Graphics Program Ideas
JollyRogerInvasion Account Info

Could someone build a grid-based generic battle engine for the Nspire? that would help a lot with some of my program ideas.

     25 October 2010, 22:06 GMT

Re: Graphics Program Ideas
smartguy8  Account Info

Since I am the first, why not create a program that is a comic book? Someone could create a periodical program that is a digital comic book. Output it every time the new comic is done. You're welcome!

Au revoir,
Emeka

     15 April 2003, 02:38 GMT

Re: Re: Graphics Program Ideas
Michael Youssef  Account Info
(Web Page)

good idea, email me at killajoy6666@charter.net

     16 April 2003, 04:41 GMT


How To...
michael8161990  Account Info

I need to know how to convert a movie or a clip into a ti 83 plus basic format. this would be really helpfull.

To contact me: mike8161990@yahoo.com

     26 August 2003, 14:39 GMT


Re: How To...
Fibonacci Account Info

I'm not sure how to make the movie clip into a BASIC format but I have a program that will take a movie and convert it onto the TI (all platforms) (including GRAYSCALE!!!) so you can watch it on the calc. I'll e-mail it to u.

     14 March 2004, 01:54 GMT

Re: Re: How To...
retarted Account Info

could you send it to me at crsent@dc4pc.net

     30 March 2004, 01:22 GMT


Re: Re: How To...
Trevor Walker  Account Info

i know im 2 years late (lol) but if u notice this post would u email it 2 me at TRBAWA@aol.com

     21 October 2006, 02:03 GMT

Re: Re: Graphics Program Ideas
Jiaqi Wu  Account Info

That's very interesting. But once everyone has read it then no one wants it anymore. Maybe it should be a comic viewer thing like how Animation Master Viewer works for animations except this will be for comics.

     11 June 2003, 04:52 GMT


Re: Re: Re: Graphics Program Ideas
Nick Judge  Account Info

This doesnt have much to do comic books but how are you suposed to play games that take up like 68k memory? Is there some kind of upgrade that i dont know about or are people just making cool programs that are to big to be played. With 83+ you can use Archive but if you do that you cant play it. And Im talking about games for that 83 anyways because thats what i have. So if any one knows my Question please comment because it is making me nad not being able to play those cool games. Thank You!!! (if anyone helps me)

     24 December 2003, 08:30 GMT


Re: Re: Re: Re: Graphics Program Ideas
Justin L  Account Info

The only way I know is to get Ion or some other kind of shell. I use Ion and it is great. You can keep your Ion games archived and still play them with Ion. I have soo many I dont know what to do with them =). Hope this can help.

     20 January 2004, 20:33 GMT


Re: Re: Graphics Program Ideas
Vminch Account Info

Look above you, the code for the comic is there. Stupid PICS!!!

     15 May 2007, 13:30 GMT

1  2  3  4  5  6  7  8  9  10  11  12  

You can change the number of comments per page in Account Preferences.

  Copyright © 1996-2012, the ticalc.org project. All rights reserved. | Contact Us | Disclaimer