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
|
Is it possible to make your own symbols for the Calculator (I have ti-84 SE)
|
|
31 May 2006, 01:32 GMT
|
|
Fractals
|
jwymbs
|
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
|
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
|
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
|
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
|
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
|
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
(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
|
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
(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
|
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
|
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
|
|
1 2 3 4 5 6 7 8 9 10 11 12
You can change the number of comments per page in Account Preferences.
|