NetBeans Forums
| View previous topic :: View next topic |
| Author |
Message |
Eretaia
Joined: 25 Apr 2012 Posts: 2
|
Posted: Wed Apr 25, 2012 2:57 pm Post subject: What kind of application can I make with NetBeans? |
|
|
Hello everyone. A newbie here, obviously. You could tell from the title.
I have a rather odd question to ask but please bear with me as I really need help form somebody experienced. I'm an art/design university student, but as of recently, I also have side courses of Java where we use NetBeans. And for this exam, we're requested to make a simple application for windows, but we also have help from professors and senior students, because we've literally just begun and are completely incapable of doing something on our own.
For now, we're only requested to think of a project (which should preferably have some artistic nature or purpose) which we will be realizing in the future with NetBeans with help of our professor and this is where I need your help guys. Given that I still don't know NetBeans and java that well (it's not my field after all and I've just gotten into it), I don't really know their possibilities. So, do you possibly have any ideas about what kind of application I could develop with NetBeans which would have some artistic purpose or nature? You know, something like a simple paint program with various options or something that has to do with images/audio/video. Literally, any idea is useful for me.
Like I said, our professors will be helping us out with the code, so it shouldn't be all that simple. We're supposed to a bit creative, eh, but since I've just gotten into this field, I'm really confused about what can be done and what cannot.
Thank a lot, and I really apologize if the question was out of place but I don't know who else to turn to. |
|
| Back to top |
|
 |
Javier Ortiz Posted via mailing list.
|
Posted: Wed Apr 25, 2012 9:09 pm Post subject: What kind of application can I make with NetBeans? |
|
|
This should give you an idea: http://netbeans.org/features/platform/showcase.html
It would be great to do an advanced paint application but is a huge task for probably too short time .
Senior Software Quality Engineer
ArthroCare Corporation
7000 William Cannon Drive
Austin, TX 78735
Phone: 512-358-5996
email: address-removed
-----Original Message-----
From: Eretaia [mailto:address-removed]
Sent: Wednesday, April 25, 2012 9:58 AM
To: address-removed
Subject: [nbusers] What kind of application can I make with NetBeans?
Hello everyone. A newbie here, obviously. You could tell from the title.
I have a rather odd question to ask but please bear with me as I really need help form somebody experienced. I'm an art/design university student, but as of recently, I also have side courses of Java where we use NetBeans. And for this exam, we're requested to make a simple application for windows, but we also have help from professors and senior students, because we've literally just begun and are completely incapable of doing something on our own.
For now, we're only requested to think of a project (which should preferably have some artistic nature or purpose) which we will be realizing in the future with NetBeans with help of our professor and this is where I need your help guys. Given that I still don't know NetBeans and java that well (it's not my field after all and I've just gotten into it), I don't really know their possibilities. So, do you possibly have any ideas about what kind of application I could develop with NetBeans which would have some artistic purpose or nature? You know, something like a simple paint program with various options or something that has to do with images/audio/video. Literally, any idea is useful for me.
Like I said, our professors will be helping us out with the code, so it shouldn't be all that simple. We're supposed to a bit creative, eh, but since I've just gotten into this field, I'm really confused about what can be done and what cannot.
Thank a lot, and I really apologize if the question was out of place but I don't know who else to turn to.
**********
The information contained in this e-mail message, together with any
attachments thereto, is intended only for the personal and confidential
use of the addressee named above. The message and the attachments
are or may be privileged or protected communication. If you are not the
intended recipient of this message, or authorized to receive it for the
intended recipient, you have received this message in error, and you
are not to review, use, disseminate, distribute or copy this message,
any attachments thereto, or their contents. If you have received this
message in error, please immediately notify us by return e-mail
message, and delete the original message.
Pursuant to Circular 230 issued by the United States Treasury
Department and relating to practice before the Internal Revenue
Services, any comment or opinion in this communication relating to a
federal tax issue is not intended to be used, and cannot be used, by a
taxpayer for the purpose of avoiding tax-related penalties that may be
imposed on the taxpayer. |
|
| Back to top |
|
 |
David Johnson Posted via mailing list.
|
Posted: Wed Apr 25, 2012 9:11 pm Post subject: What kind of application can I make with NetBeans? |
|
|
How about a fractal generator:
a single form that allows input of a size (scaler) and a direction
(angle expressed as radians or degrees) and two buttons, one that says
"Go" and one that says "Clear".
The main part of the form is a canvas on which your program will draw
the fractal.
The operator inputs a number for the size and a number for the direction
and presses the "Go" button. Your program generates a fractal pattern
from the inputs and draws it on the canvas.
If you want to get fancy add a choice of colour....
HTH
David Johnson
On Wed, 2012-04-25 at 14:58 +0000, Eretaia wrote:
| Quote: | Hello everyone. A newbie here, obviously. You could tell from the title.
I have a rather odd question to ask but please bear with me as I really need help form somebody experienced. I'm an art/design university student, but as of recently, I also have side courses of Java where we use NetBeans. And for this exam, we're requested to make a simple application for windows, but we also have help from professors and senior students, because we've literally just begun and are completely incapable of doing something on our own.
For now, we're only requested to think of a project (which should preferably have some artistic nature or purpose) which we will be realizing in the future with NetBeans with help of our professor and this is where I need your help guys. Given that I still don't know NetBeans and java that well (it's not my field after all and I've just gotten into it), I don't really know their possibilities. So, do you possibly have any ideas about what kind of application I could develop with NetBeans which would have some artistic purpose or nature? You know, something like a simple paint program with various options or something that has to do with images/audio/video. Literally, any idea is useful for me.
Like I said, our professors will be helping us out with the code, so it shouldn't be all that simple. We're supposed to a bit creative, eh, but since I've just gotten into this field, I'm really confused about what can be done and what cannot.
Thank a lot, and I really apologize if the question was out of place but I don't know who else to turn to. |
|
|
| Back to top |
|
 |
Eretaia
Joined: 25 Apr 2012 Posts: 2
|
Posted: Thu Apr 26, 2012 9:35 am Post subject: Re: What kind of application can I make with NetBeans? |
|
|
Thanks a bunch to both of you!
| David Johnson wrote: | How about a fractal generator:
a single form that allows input of a size (scaler) and a direction
(angle expressed as radians or degrees) and two buttons, one that says
"Go" and one that says "Clear".
The main part of the form is a canvas on which your program will draw
the fractal.
The operator inputs a number for the size and a number for the direction
and presses the "Go" button. Your program generates a fractal pattern
from the inputs and draws it on the canvas.
If you want to get fancy add a choice of colour....
HTH
David Johnson |
Amazing! This is exactly what I was hoping for! I myself really like your suggestion and I think it would work perfectly for my project as well. Do you by any chance know any tutorial about making this in NetBeans? Googling it gave me millions of fractal generator applications but no tutorials.
Thanks once again, David! This literally saved me.  |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You can attach files in this forum You can download files in this forum
|
|