Alp Yilancioglu wrote:

Need Help!  This is my thesis project for the university and I have got
only 10 days to finish this project. I need help because I don’t know The
java3d package methods.
I am making a robot arm simulation.
I wanted the user to give the coordinates as an input and the arm will go
to the given coordinate
Joint- How can I make joint/ link between objects?
How can I make a hierarchical structure?
Which classes should I use ?

Please someone help…

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA3D-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".



You're going to want to spend a bit of time looking through the docs and
examples. Java3D is non trivial.

The basic structure you're looking for is:

SimpleUniverse
{
BranchGroup
{
Light {}
TransformGroup {
Shape3D (shoulderShape)
TransformGroup {
Shape3D (elbowShape)
TransformGroup
{
Shape3D (wristShape)
}
}
}
}
}

Go to the directory where you installed Java, and look for the directory
with the Java3D examples. Open the index page in your web browser (on my
system this is C:\j2sdk1.4.2_04\demo\java3d\index.html). Play with the
examples and look at the source code to see how they work.

You may also want to look at
http://java.sun.com/developer/onlineTraining/java3d/j3d_tutorial_ch2.pdf

Mark McKay

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA3D-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to