hi there !! do you have any idea on how to start creating a 2D or 3D java applet?...
tnx much.................
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
hi there !! do you have any idea on how to start creating a 2D or 3D java applet?...
tnx much.................
Here is java.awt.applet info(link)
Applet (Java Platform SE 7 )
What do you mean by "2D or 3D" applet? What does the applet need to do? Also, be sure to use the JApplet class when writing your code.
An applet is simply a class that extends Applet or JApplet (the latter only adds some "Swing" concepts)
What you do or display in an applet is another story. Java has direct support for 2D graphics through Graphics/Graphics2D classes. You need to do some "custom" painting, either directly in the applet or in a specific component (extension of JPanel for example).
For 3D graphics you need a specific external library (it's not in the standard Java SE framework!). And it's all another (more complex) story.
Andrea, www.andbin.net — SCJP 5 (91%) – SCWCD 5 (94%)
Useful links for Java beginners – My new project Java Examples on Google Code