Uses of Class
org.jzy3d.plot3d.rendering.view.View

Packages that use View
org.jzy3d.chart   
org.jzy3d.chart.graphs   
org.jzy3d.picking   
org.jzy3d.plot3d.primitives.axes Provides concrete axes implementing the Axe interface 
org.jzy3d.plot3d.rendering.canvas   
org.jzy3d.plot3d.rendering.scene   
org.jzy3d.plot3d.rendering.view Provides interfaces, abstract classes and concrete classes to perform rendering of 3d objects into a canvas. 
org.jzy3d.plot3d.rendering.view.controllers   
 

Uses of View in org.jzy3d.chart
 

Subclasses of View in org.jzy3d.chart
 class ChartView
          A ChartView allows displaying a 3d scene on the left, and a set of AbstractDrawable's Legend on the right.
 

Methods in org.jzy3d.chart that return View
 View ChartScene.newView(ICanvas canvas, Quality quality)
           
 

Methods in org.jzy3d.chart with parameters of type View
 void ChartScene.clearView(View view)
           
 

Uses of View in org.jzy3d.chart.graphs
 

Subclasses of View in org.jzy3d.chart.graphs
 class GraphView
           
 

Uses of View in org.jzy3d.picking
 

Methods in org.jzy3d.picking with parameters of type View
 void PickingSupport.pickObjects(javax.media.opengl.GL gl, javax.media.opengl.glu.GLU glu, View view, Graph graph, IntegerCoord2d pickPoint)
           
 

Uses of View in org.jzy3d.plot3d.primitives.axes
 

Methods in org.jzy3d.plot3d.primitives.axes that return View
 View AxeBox.getView()
           
 

Methods in org.jzy3d.plot3d.primitives.axes with parameters of type View
 void AxeBox.setView(View view)
          When setting a current view, the AxeBox can know the view is on mode CameraMode.TOP, and optimize some axis placement.
 

Uses of View in org.jzy3d.plot3d.rendering.canvas
 

Methods in org.jzy3d.plot3d.rendering.canvas that return View
 View OffscreenCanvas.getView()
          Provide a reference to the View that renders into this canvas.
 View ICanvas.getView()
          Returns a reference to the held view.
 View CanvasSwing.getView()
          Provide a reference to the View that renders into this canvas.
 View CanvasAWT.getView()
          Provide a reference to the View that renders into this canvas.
 

Uses of View in org.jzy3d.plot3d.rendering.scene
 

Methods in org.jzy3d.plot3d.rendering.scene that return View
 View Scene.newView(ICanvas canvas, Quality quality)
          Instantiate a View attached to the given Canvas, and return its reference.
 

Methods in org.jzy3d.plot3d.rendering.scene with parameters of type View
 void Scene.clearView(View view)
           
 

Uses of View in org.jzy3d.plot3d.rendering.view
 

Methods in org.jzy3d.plot3d.rendering.view that return View
static View View.current()
           
 

Constructors in org.jzy3d.plot3d.rendering.view with parameters of type View
Renderer3d(View view)
          Initialize a Renderer attached to the given View.
Renderer3d(View view, boolean traceGL, boolean debugGL)
          Initialize a Renderer attached to the given View, and activate GL trace and errors to console.
 

Uses of View in org.jzy3d.plot3d.rendering.view.controllers
 

Methods in org.jzy3d.plot3d.rendering.view.controllers with parameters of type View
 void ViewCameraController.addTarget(View target)
           
 void ViewCameraController.removeTarget(View target)
           
 

Constructors in org.jzy3d.plot3d.rendering.view.controllers with parameters of type View
ViewMouseController(View view)