Uses of Class
org.faceless.graph2.Output
-
Packages that use Output Package Description org.faceless.graph2 -
-
Uses of Output in org.faceless.graph2
Subclasses of Output in org.faceless.graph2 Modifier and Type Class Description class
ImageOutput
The ImageOutput class is a subclass of Output, which allows Graphs to be drawn to aBufferedImage
orGraphics2D
object, and then optionally rendered to a PNG image by calling thewritePNG()
method.class
PDFOutput
A subclass ofOutput
that can be used to plot graphs to aPDFCanvas
object, which can be included in our companion PDF Library.class
SVGOutput
A subclass ofOutput
which allows the finished Graph to be rendered to SVG.Methods in org.faceless.graph2 with parameters of type Output Modifier and Type Method Description void
Graph. draw(Output out)
Draw the Graph to the specifiedOutput
object.
-