Uses of Interface
org.gephi.preview.api.RenderTarget
-
Packages that use RenderTarget Package Description org.gephi.preview.api API for Preview rendering.org.gephi.preview.spi Interfaces for creating new renderers, item builders and render targets. -
-
Uses of RenderTarget in org.gephi.preview.api
Subinterfaces of RenderTarget in org.gephi.preview.api Modifier and Type Interface Description interface
G2DTarget
Rendering target to Java2d.interface
PDFTarget
Rendering target to PDF format.interface
SVGTarget
Rendering target to SVG format.Methods in org.gephi.preview.api that return RenderTarget Modifier and Type Method Description RenderTarget
PreviewController. getRenderTarget(String name)
Creates a new render target of the given type.RenderTarget
PreviewController. getRenderTarget(String name, Workspace workspace)
Creates a new render target of the given type in the preview model contained byworkspace
.Methods in org.gephi.preview.api with parameters of type RenderTarget Modifier and Type Method Description void
PreviewController. render(RenderTarget target)
Renders the current preview model totarget
.void
PreviewController. render(RenderTarget target, Renderer[] renderers)
Renders the current preview model totarget
.void
PreviewController. render(RenderTarget target, Renderer[] renderers, Workspace workspace)
Renders the preview model inworkspace
totarget
.void
PreviewController. render(RenderTarget target, Workspace workspace)
Renders the preview model inworkspace
totarget
. -
Uses of RenderTarget in org.gephi.preview.spi
Methods in org.gephi.preview.spi that return RenderTarget Modifier and Type Method Description RenderTarget
RenderTargetBuilder. buildRenderTarget(PreviewModel previewModel)
Builds a new render target using the properties and dimensions defined inpreviewModel
.Methods in org.gephi.preview.spi with parameters of type RenderTarget Modifier and Type Method Description void
Renderer. postProcess(PreviewModel previewModel, RenderTarget target, PreviewProperties properties)
This method is called after rendering all items to perform post-processing.void
Renderer. render(Item item, RenderTarget target, PreviewProperties properties)
Renderitem
totarget
using the global properties and item data.
-