Author: Vasile JureschiVasile 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);
|