Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 07736bd

Browse files
committed
added pnpoly for better poly hit testing
svn path=/trunk/matplotlib/; revision=2750
1 parent 29f6abc commit 07736bd

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

src/numerix.h

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/* numerix.h -- John Hunter
2+
*/
3+
4+
#ifndef _NUMERIX_H
5+
#define _NUMERIX_H
6+
#ifdef NUMARRAY
7+
#include "numarray/arrayobject.h"
8+
#else
9+
#ifdef NUMERIC
10+
#include "Numeric/arrayobject.h"
11+
#else
12+
#define PY_ARRAY_TYPES_PREFIX NumPy
13+
#include "numpy/arrayobject.h"
14+
#if (NDARRAY_VERSION >= 0x00090908)
15+
#include "numpy/oldnumeric.h"
16+
#endif
17+
#endif
18+
#endif
19+
20+
#endif

0 commit comments

Comments
 (0)