#include <GL/glew.h>
#include <OpenGL/gl.h>
#include <OpenGL/glu.h>
#include <GLUT/glut.h>
#include <list>
#include <map>
#include "shader_primitive.h"
#include "scalar_field.h"
#include "stopwatch.h"
#include "function.h"
#include "contour.h"
#include "p_curve.h"
#include "screen.h"
#include "vector.h"
#include "color.h"
#include "curve.h"
#include "point.h"
#include "flow.h"
Go to the source code of this file.
Classes | |
class | glot::grapher |
grapher: an interactive plotter display More... | |
Namespaces | |
namespace | glot |
Enumerations | |
enum | glot::display_opt { glot::AXES_OFF = 0, glot::GRID_OFF = 0, glot::X_LIN = 0, glot::Y_LIN = 0, glot::AXES_ON = 1, glot::GRID_ON = 2, glot::X_LOG = 4, glot::Y_LOG = 8 } |
Enumeration for display options. More... | |
enum | glot::keyboard_opt { glot::ZOOM_KEYS_OFF = 0, glot::AXES_KEYS_OFF = 0, glot::GRID_KEYS_OFF = 0, glot::QUIT_KEYS_OFF = 0, glot::ZOOM_KEYS_ON = 1, glot::AXES_KEYS_ON = 2, glot::GRID_KEYS_ON = 4, glot::QUIT_KEYS_ON = 8 } |
Enumeration for keyboard action options. More... |