Tagged Questions
The canvas3d tag has no wiki summary.
2
votes
4answers
592 views
How can I make a 3D shooting game using HTML5 Canvas?
I want to make a 3D shooter (just shooting, no movements or anything) using HTML5 Canvas.
How can I do that? I searched for some tutorials but I couldn't find any good ones.
1
vote
1answer
39 views
Flipping the View horizontally - How?
I am very new to Java 3D. Recently I've found that all of my scene objects are in left-handed coordinates, but Java 3D uses right-hand coordinates. There is a solution: flipping the scene Z-axis and ...
0
votes
0answers
8 views
Canvas3d doesn't show up in browser - works fine in Eclipse
I have an applet that uses a canvas3d and it works fine as both an application and an applet running from eclipse, but when I try to load it from my web browser the canvas doesn't show up. The applet ...
0
votes
0answers
28 views
How do I integrate Canvas3D into a swing based user interface?
I am relatively new at programming, and VERY new at java3d (I've only been at it for about a week), so needless to say I am still pretty confused.
I'm working on a project that requires graphing ...
0
votes
1answer
196 views
How do i translate movement on the Canvas3D to movement in the virtual 3D world
My goal is to move a shape in the virtual world in such a way so that it ends up where the mouse pointer is on the canvas.
What i have:
-mouse position (x,y) on a Canvas3D object
-Point3d object of ...
0
votes
1answer
614 views
Why does my off screen rendering Canvas3D not work?
I've been trying to make off screen rendering to work, using Java3D 1.5.2. In my source code I've been trying to attach an extended Canvas3D that will do off-screen rendering to SimpleUniverse, but ...