forked from alandefreitas/matplotplusplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeywords.h
More file actions
42 lines (28 loc) 路 946 Bytes
/
Copy pathkeywords.h
File metadata and controls
42 lines (28 loc) 路 946 Bytes
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
//
// Created by Alan Freitas on 2020-07-06.
//
#ifndef MATPLOTPLUSPLUS_KEYWORDS_H
#define MATPLOTPLUSPLUS_KEYWORDS_H
#include <limits>
namespace matplot {
class keyword_automatic_type {};
constexpr keyword_automatic_type automatic;
class keyword_manual_type {};
constexpr keyword_manual_type manual;
class keyword_equal_type {};
constexpr keyword_equal_type equal;
class keyword_square_type {};
constexpr keyword_square_type square;
class keyword_tight_type {};
constexpr keyword_tight_type tight;
class keyword_ij_type {};
constexpr keyword_ij_type ij;
class keyword_minor_type {};
constexpr keyword_minor_type minor;
constexpr bool on = true;
constexpr bool off = false;
constexpr bool left = false;
constexpr bool right = true;
constexpr double inf = std::numeric_limits<double>::infinity();
} // namespace matplot
#endif // MATPLOTPLUSPLUS_KEYWORDS_H