No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
According to the the link [url]http://68.41.192.217/Java/HTML/chatclient3d.html[/url], I guess you must have solved this problem! Congratulations!
[B][COLOR="Red"]good job![/COLOR][/B]
The book of "Java3d Programing" written by Daniel Selman must helpful to you!
According to the following codes: [CODE]// Add the vertices to the QuadArray for(int v=0; v<faces[f].length; v++) { face.setCoordinates(v, vertices[faces[f][v]]); // Set the texture coordinates for(int i=0; i<4; i++){ face.setTextureCoordinate(i, texcoords[i]); } } [/CODE] We can tell the two array variables must be defined like follows: [CODE]Point3d vertices[] = new Point3d[]; …
If document.name.style.display="none"; does not work, you should check if the object "document.name" and "document.name.style" is effective by using: alert(document.name); and alert(document.name.style);
The End.
cmliu2004