Uses of Interface
de.javagl.swogl.SwoglComponent

Packages that use SwoglComponent
de.javagl.swogl The core classes of Swogl. 
de.javagl.swogl.layout Preliminary classes and interfaces for the 3D layout inside a SwoglContainer 
 

Uses of SwoglComponent in de.javagl.swogl
 

Methods in de.javagl.swogl that return SwoglComponent
static SwoglComponent SwoglComponents.create(Geometry geometry, Texture texture, javax.swing.JComponent component)
          Create a new SwoglComponent that contains the given Swing component and consists of the given geometry and texture.
static SwoglComponent SwoglComponents.create(javax.swing.JComponent component)
          Creates a new SwoglComponent that contains the given Swing component.
static SwoglComponent SwoglComponents.create(javax.swing.JComponent component, int w, int h)
          Creates a new SwoglComponent that contains the given Swing component.
 SwoglComponent IntersectionInfo.getSwoglComponent()
          Returns the SwoglComponent that was intersected
 SwoglComponent SwoglContainer.getSwoglComponent(int index)
          Returns the SwoglComponent with the given index
 

Methods in de.javagl.swogl that return types with arguments of type SwoglComponent
 java.util.List<SwoglComponent> SwoglRenderer.getSwoglComponents()
          Returns an immutable list of all SwoglComponents.
 

Methods in de.javagl.swogl with parameters of type SwoglComponent
 void SwoglContainer.add(SwoglComponent swoglComponent)
          Adds the given SwoglComponent to this SwoglContainer
 void SwoglComponentHandler.handleSwoglComponent(SwoglComponent swoglComponent)
          Handle the given SwoglComponent.
 void SwoglComponentHandler.releaseSwoglComponent(SwoglComponent swoglComponent)
          Release the given SwoglComponent.
 void SwoglContainer.remove(SwoglComponent swoglComponent)
          Removes the given SwoglComponent from this SwoglContainer
 void SwoglRenderer.renderSwoglComponent(SwoglComponent swoglComponent)
          Causes a rendering of the current state of the given SwoglComponent.
 

Uses of SwoglComponent in de.javagl.swogl.layout
 

Methods in de.javagl.swogl.layout with parameters of type SwoglComponent
static javax.vecmath.Matrix4f BillboardLayout3D.computeBillboardTransform(SwoglComponent swoglComponent, Camera camera)
          Utility method that computes the transform that must be applied to the given SwoglComponent so that it faces the given Camera.