Uses of Interface
org.jzy3d.plot3d.rendering.canvas.ICanvas

Packages that use ICanvas
org.jzy3d.chart   
org.jzy3d.chart.graphs   
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.text Provides utilities for rendering texts into a 3 dimensional scene. 
 

Uses of ICanvas in org.jzy3d.chart
 

Methods in org.jzy3d.chart that return ICanvas
 ICanvas Chart.getCanvas()
           
 

Methods in org.jzy3d.chart with parameters of type ICanvas
 View ChartScene.newView(ICanvas canvas, Quality quality)
           
 

Constructors in org.jzy3d.chart with parameters of type ICanvas
ChartView(Scene scene, ICanvas canvas, Quality quality)
           
 

Uses of ICanvas in org.jzy3d.chart.graphs
 

Constructors in org.jzy3d.chart.graphs with parameters of type ICanvas
GraphView(Scene scene, ICanvas canvas, Quality quality)
           
 

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

Methods in org.jzy3d.plot3d.primitives.axes with parameters of type ICanvas
 void AxeBox.setTextRenderer(ICanvas canvas)
          Initialize a text renderer that will reference the target canvas for getting its dimensions (in order to convert coordinates from OpenGL to Java2d).
 

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

Subinterfaces of ICanvas in org.jzy3d.plot3d.rendering.canvas
 interface IScreenCanvas
           
 

Classes in org.jzy3d.plot3d.rendering.canvas that implement ICanvas
 class CanvasAWT
          A ICanvas embed an OpenGL Renderer3d for handling GL events, a mouse and keyboard controllers for setting the viewpoint (inheriting ViewPointController), and a Scene storing the actual Graph and Views.
 class CanvasSwing
          A Canvas3d embed an OpenGL Renderer3d for handling GL events, a mouse and keyboard controllers for setting the viewpoint (inheriting ViewPointController), and a Scene storing the actual Graph and Views.
 class OffscreenCanvas
          Offscreen canvas for use in headless environments.
 

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

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

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

Constructors in org.jzy3d.plot3d.rendering.view with parameters of type ICanvas
View(Scene scene, ICanvas canvas, Quality quality)
          Create a view attached to a Scene, with its own Camera and Axe.
 

Uses of ICanvas in org.jzy3d.plot3d.text
 

Constructors in org.jzy3d.plot3d.text with parameters of type ICanvas
TextRenderer(ICanvas canvas)