Graphics Library
From Jacket Wiki
Back to Documentation
|
The Graphics Library integrates Jacket's computational engine with the full OpenGL capabilities of your GPU. This coupling of computation and graphics allows you to develop visual computing applications.
Requirements
In order to display graphics, one must either be running locally or remotely attached to a server via VNC. I.E. X forwarding (ssh -X) will NOT work.
Graphics Library Functions
| GFIGURE | Open a GPU figure |
| GCLOSE | Close a GPU figure |
| GHOLD | Retain current graph in figure |
| GSUBPLOT | Create a rectangular grid of plots |
| GCLF | Clear the current figure |
| GDRAWNOW | Force execution of all pending graphics commands and display |
| PLOT | 2-D line plot |
| IMAGESC | Scale data and display image object |
| SURF | 3-D shaded surface plot |
| SCATTER3 | 3-D scatter plot |
| VOLUME | volume rendering of 3d arrays |
| SCATTERCOLORS | colored scatterplot of 3d data |