AWT 3d rendering
  Home FAQ Contact Sign in
comp.lang.java.3d only
 
Advanced search
POPULAR GROUPS

more...

comp.lang.java.3d Profile…
 Up
AWT 3d rendering         


Author: armuser
Date: Jul 18, 2008 00:33

Hi

I'm looking for a java library that allows to rendering 3d graphics
using AWT component not using OpenGl.
Do you know such libraries? I tryed to find something but I found only
libraries using Java3d or OpenGl.

Regards
Jacek
2 Comments
Re: AWT 3d rendering         


Author: PhoneixS
Date: Jul 19, 2008 07:59

I think you can use java3d with AWT and Swing.
no comments
Re: AWT 3d rendering         


Author: Vasile Jureschi
Date: Aug 6, 2008 09:32

armuser@wp.pl wrote:
> Hi
>
> I'm looking for a java library that allows to rendering 3d graphics
> using AWT component not using OpenGl.
> Do you know such libraries? I tryed to find something but I found only
> libraries using Java3d or OpenGl.
>
> Regards
> Jacek
From what I know you just need to use the Canvas3D in any AWT component and
the universe will be displayed

Something along the lines of:

        GridUniverse universe = new GridUniverse();

        // three views
        Canvas3D viewOne = universe.newView();

        JPanel main = new JPanel(mainLay);

        main.add(viewOne);
Show full article (1.41Kb)
no comments