Uses of Class
javax.media.j3d.Canvas3D

Uses of Canvas3D in javax.media.j3d
 

Methods in javax.media.j3d that return Canvas3D
 Canvas3D ShaderError.getCanvas3D()
          Returns the canvas associated with this shader error.
 Canvas3D RenderingError.getCanvas3D()
          Returns the canvas associated with this rendering error.
 Canvas3D GraphicsContext3D.getCanvas3D()
          Gets the Canvas3D that created this GraphicsContext3D.
 Canvas3D View.getCanvas3D(int index)
          Gets the Canvas3D at the specified index position.
 

Methods in javax.media.j3d that return types with arguments of type Canvas3D
 java.util.Enumeration<Canvas3D> View.getAllCanvas3Ds()
          Gets the enumeration object of all the Canvas3Ds.
 

Methods in javax.media.j3d with parameters of type Canvas3D
 void View.addCanvas3D(Canvas3D canvas3D)
          Adds the given Canvas3D at the end of the list.
 int View.indexOfCanvas3D(Canvas3D canvas3D)
          Retrieves the index of the specified Canvas3D in this View's list of Canvas3Ds
 void View.insertCanvas3D(Canvas3D canvas3D, int index)
          Inserts the Canvas3D at the given index position.
 void View.removeCanvas3D(Canvas3D canvas3D)
          Removes the specified Canvas3D from this View's list of Canvas3Ds.
 void ShaderError.setCanvas3D(Canvas3D canvas)
          Sets the canvas associated with this shader error.
 void RenderingError.setCanvas3D(Canvas3D canvas)
          Sets the canvas associated with this rendering error.
 void View.setCanvas3D(Canvas3D canvas3D, int index)
          Sets given Canvas3D at the given index position.