class ViewerExtensionModule extends java.lang.Object
A Groovy Extension Module that adds static methods to the Viewer class.
Constructor and description |
---|
ViewerExtensionModule
() |
Type Params | Return Type | Name and description |
---|---|---|
|
static void |
plot(Viewer viewer, java.util.Map options, java.lang.Object geom) Plot the Geometry (or List of Geometries) to a Swing JFrame using JFreeChart. |
|
static void |
plotToFile(Viewer viewer, java.util.Map options, java.lang.Object geom, java.io.File file) Plot a Geometry (or List of Geometries) to an image File |
|
static java.awt.image.BufferedImage |
plotToImage(Viewer viewer, java.util.Map options, java.lang.Object geom) Plot a Geometry (or List of Geometries) to a BufferedImage |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Plot the Geometry (or List of Geometries) to a Swing JFrame using JFreeChart.
viewer
- The Vieweroptions
- A Map of options or named parameters
geom
- A Geometry (or List of Geometries)Plot a Geometry (or List of Geometries) to an image File
viewer
- The Vieweroptions
- A Map of options or named parameters
geom
- The Geometry (or List of Geometries)file
- The FilePlot a Geometry (or List of Geometries) to a BufferedImage
viewer
- The Vieweroptions
- A Map of options or named parameters
geom
- A Geometry (or List of Geometries)