A high-performance general-purpose compute library
graphics.h File Reference
#include <af/defines.h>
#include <af/array.h>

Go to the source code of this file.

Data Structures

struct  af_cell
 
class  Window
 Window object to render af::arrays. More...
 

Namespaces

namespace  af
 

Typedefs

typedef void * af_window
 

Functions

AFAPI af_err af_create_window (af_window *out, const int width, const int height, const char *const title)
 C Interface wrapper for creating a window. More...
 
AFAPI af_err af_set_position (const af_window wind, const unsigned x, const unsigned y)
 C Interface wrapper for setting the start position when window is displayed. More...
 
AFAPI af_err af_set_title (const af_window wind, const char *const title)
 C Interface wrapper for setting window title. More...
 
AFAPI af_err af_set_size (const af_window wind, const unsigned w, const unsigned h)
 C Interface wrapper for setting window position. More...
 
AFAPI af_err af_draw_image (const af_window wind, const af_array in, const af_cell *const props)
 C Interface wrapper for drawing an array as an image. More...
 
AFAPI af_err af_draw_plot (const af_window wind, const af_array X, const af_array Y, const af_cell *const props)
 C Interface wrapper for drawing an array as a plot. More...
 
AFAPI af_err af_draw_plot3 (const af_window wind, const af_array P, const af_cell *const props)
 C Interface wrapper for drawing an array as a plot. More...
 
AFAPI af_err af_draw_plot_nd (const af_window wind, const af_array P, const af_cell *const props)
 C Interface wrapper for drawing an array as a 2D or 3D plot. More...
 
AFAPI af_err af_draw_plot_2d (const af_window wind, const af_array X, const af_array Y, const af_cell *const props)
 C Interface wrapper for drawing an array as a 2D plot. More...
 
AFAPI af_err af_draw_plot_3d (const af_window wind, const af_array X, const af_array Y, const af_array Z, const af_cell *const props)
 C Interface wrapper for drawing an array as a 3D plot. More...
 
AFAPI af_err af_draw_scatter (const af_window wind, const af_array X, const af_array Y, const af_marker_type marker, const af_cell *const props)
 C Interface wrapper for drawing an array as a plot. More...
 
AFAPI af_err af_draw_scatter3 (const af_window wind, const af_array P, const af_marker_type marker, const af_cell *const props)
 C Interface wrapper for drawing an array as a plot. More...
 
AFAPI af_err af_draw_scatter_nd (const af_window wind, const af_array P, const af_marker_type marker, const af_cell *const props)
 C Interface wrapper for drawing an array as a plot. More...
 
AFAPI af_err af_draw_scatter_2d (const af_window wind, const af_array X, const af_array Y, const af_marker_type marker, const af_cell *const props)
 C Interface wrapper for drawing an array as a 2D plot. More...
 
AFAPI af_err af_draw_scatter_3d (const af_window wind, const af_array X, const af_array Y, const af_array Z, const af_marker_type marker, const af_cell *const props)
 C Interface wrapper for drawing an array as a 3D plot. More...
 
AFAPI af_err af_draw_hist (const af_window wind, const af_array X, const double minval, const double maxval, const af_cell *const props)
 C Interface wrapper for drawing an array as a histogram. More...
 
AFAPI af_err af_draw_surface (const af_window wind, const af_array xVals, const af_array yVals, const af_array S, const af_cell *const props)
 C Interface wrapper for drawing array's as a surface. More...
 
AFAPI af_err af_draw_vector_field_nd (const af_window wind, const af_array points, const af_array directions, const af_cell *const props)
 C Interface wrapper for drawing array's as a 2D or 3D vector field. More...
 
AFAPI af_err af_draw_vector_field_3d (const af_window wind, const af_array xPoints, const af_array yPoints, const af_array zPoints, const af_array xDirs, const af_array yDirs, const af_array zDirs, const af_cell *const props)
 C Interface wrapper for drawing array's as a 3D vector field. More...
 
AFAPI af_err af_draw_vector_field_2d (const af_window wind, const af_array xPoints, const af_array yPoints, const af_array xDirs, const af_array yDirs, const af_cell *const props)
 C Interface wrapper for drawing array's as a 2D vector field. More...
 
AFAPI af_err af_grid (const af_window wind, const int rows, const int cols)
 C Interface wrapper for grid setup in a window. More...
 
AFAPI af_err af_set_axes_limits_compute (const af_window wind, const af_array x, const af_array y, const af_array z, const bool exact, const af_cell *const props)
 C Interface for setting axes limits for a histogram/plot/surface/vector field. More...
 
AFAPI af_err af_set_axes_limits_2d (const af_window wind, const float xmin, const float xmax, const float ymin, const float ymax, const bool exact, const af_cell *const props)
 C Interface for setting axes limits for a 2D histogram/plot/vector field. More...
 
AFAPI af_err af_set_axes_limits_3d (const af_window wind, const float xmin, const float xmax, const float ymin, const float ymax, const float zmin, const float zmax, const bool exact, const af_cell *const props)
 C Interface for setting axes limits for a 3D plot/surface/vector field. More...
 
AFAPI af_err af_set_axes_titles (const af_window wind, const char *const xtitle, const char *const ytitle, const char *const ztitle, const af_cell *const props)
 C Interface wrapper for setting axes titles for histogram/plot/surface/vector field. More...
 
AFAPI af_err af_set_axes_label_format (const af_window wind, const char *const xformat, const char *const yformat, const char *const zformat, const af_cell *const props)
 C Interface wrapper for setting axes labels formats for charts. More...
 
AFAPI af_err af_show (const af_window wind)
 C Interface wrapper for showing a window. More...
 
AFAPI af_err af_is_window_closed (bool *out, const af_window wind)
 C Interface wrapper for checking if window is marked for close. More...
 
AFAPI af_err af_set_visibility (const af_window wind, const bool is_visible)
 Hide/Show a window. More...
 
AFAPI af_err af_destroy_window (const af_window wind)
 C Interface wrapper for destroying a window handle. More...
 

Typedef Documentation

◆ af_window

typedef void* af_window

Definition at line 15 of file graphics.h.