forked from alandefreitas/matplotplusplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatplot.h
51 lines (44 loc) · 1.62 KB
/
matplot.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//
// Created by Alan Freitas on 2020-07-03.
//
#ifndef MATPLOTPLUSPLUS_MATPLOT_H
#define MATPLOTPLUSPLUS_MATPLOT_H
// Common / util
#include <matplot/util/common.h>
#include <matplot/util/concepts.h>
#include <matplot/util/geodata.h>
#include <matplot/util/handle_types.h>
#include <matplot/util/type_traits.h>
// Backends
#include <matplot/backend/backend_interface.h>
#include <matplot/backend/backend_registry.h>
#include <matplot/backend/gnuplot.h>
// #include <matplot/backend/opengl_3.h> // Don't include opengl by default
// Figure and axes
#include <matplot/core/axes_type.h>
#include <matplot/core/axis_type.h>
#include <matplot/core/figure_type.h>
// Axes objects
#include <matplot/axes_objects/bars.h>
#include <matplot/axes_objects/box_chart.h>
#include <matplot/axes_objects/circles.h>
#include <matplot/axes_objects/contours.h>
#include <matplot/axes_objects/error_bar.h>
#include <matplot/axes_objects/filled_area.h>
#include <matplot/axes_objects/function_line.h>
#include <matplot/axes_objects/histogram.h>
#include <matplot/axes_objects/labels.h>
#include <matplot/axes_objects/line.h>
#include <matplot/axes_objects/matrix.h>
#include <matplot/axes_objects/network.h>
#include <matplot/axes_objects/parallel_lines.h>
#include <matplot/axes_objects/stair.h>
#include <matplot/axes_objects/string_function.h>
#include <matplot/axes_objects/surface.h>
#include <matplot/axes_objects/vectors.h>
// Free-standing functions
#include <matplot/freestanding/axes_functions.h>
#include <matplot/freestanding/axes_lim.h>
#include <matplot/freestanding/histcounts.h>
#include <matplot/freestanding/plot.h>
#endif // MATPLOTPLUSPLUS_MATPLOT_H