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

Packages that use View
org.jzy3d.chart   
org.jzy3d.chart.controllers.mouse.selection   
org.jzy3d.chart.graphs   
org.jzy3d.factories   
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.
 

Fields in org.jzy3d.chart declared as View
protected  View ChartScene.view
           
protected  View Chart.view
           
 

Methods in org.jzy3d.chart that return View
 View Chart.getView()
           
protected  View ChartScene.initializeChartView(Scene scene, ICanvas canvas, Quality quality)
           
 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.controllers.mouse.selection
 

Methods in org.jzy3d.chart.controllers.mouse.selection with parameters of type View
protected  void SphereMouseSelector.processSelection(Scene scene, View view, int width, int height)
          Make projection and match points belonging to selection.
protected  void ScatterMouseSelector.processSelection(Scene scene, View view, int width, int height)
          Make projection and match points belonging to selection.
protected abstract  void AbstractMouseSelector.processSelection(Scene scene, View view, int width, int height)
           
 

Uses of View in org.jzy3d.chart.graphs
 

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

Uses of View in org.jzy3d.factories
 

Methods in org.jzy3d.factories that return View
 View ViewFactory.getInstance(Scene scene, ICanvas canvas, Quality quality)
           
 

Methods in org.jzy3d.factories with parameters of type View
 IAxe AxeFactory.getInstance(BoundingBox3d box, View view)
           
 Renderer3d Renderer3dFactory.getInstance(View view, boolean traceGL, boolean debugGL)
           
 

Uses of View in org.jzy3d.picking
 

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

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

Fields in org.jzy3d.plot3d.primitives.axes declared as View
protected  View AxeBox.view
           
 

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
 

Fields in org.jzy3d.plot3d.rendering.canvas declared as View
protected  View OffscreenCanvas.view
           
protected  View CanvasSwing.view
           
protected  View CanvasNewt.view
           
protected  View CanvasAWT.view
           
 

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 CanvasNewt.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
 

Fields in org.jzy3d.plot3d.rendering.scene with type parameters of type View
protected  Vector<View> Scene.views
           
 

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
 

Subclasses of View in org.jzy3d.plot3d.rendering.view
 class SelectableView
          An handles 2d projection updates to ensure mouse is always computing intersection with objects in a relevant state.
 

Fields in org.jzy3d.plot3d.rendering.view declared as View
protected static View View.current
           
protected  View Renderer3d.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
 

Fields in org.jzy3d.plot3d.rendering.view.controllers with type parameters of type View
protected  List<View> ViewCameraController.targets
           
 

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)