blob: 11209f8be86f72989f8849386a1423075ac88580 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Enum for kind codes used in Matplotlib Paths.
#ifndef MPL_KIND_CODE
#define MPL_KIND_CODE
namespace contourpy {
typedef enum
{
MOVETO = 1,
LINETO = 2,
CLOSEPOLY = 79
} MplKindCode;
} // namespace contourpy
#endif // MPL_KIND_CODE
|