diff options
Diffstat (limited to 'art_svp_point.h')
-rw-r--r-- | art_svp_point.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/art_svp_point.h b/art_svp_point.h index a5d43fc..2f5b7df 100644 --- a/art_svp_point.h +++ b/art_svp_point.h @@ -23,8 +23,10 @@ /* Determine whether a point is inside, or near, an svp. */ #ifdef LIBART_COMPILATION +#include "art_config.h" #include "art_svp.h" #else +#include <libart_lgpl/art_config.h> #include <libart_lgpl/art_svp.h> #endif @@ -32,10 +34,10 @@ extern "C" { #endif /* __cplusplus */ -int +LIBART_EXPORT int art_svp_point_wind (ArtSVP *svp, double x, double y); -double +LIBART_EXPORT double art_svp_point_dist (ArtSVP *svp, double x, double y); #ifdef __cplusplus @@ -43,7 +45,3 @@ art_svp_point_dist (ArtSVP *svp, double x, double y); #endif /* __cplusplus */ #endif /* __ART_SVP_H__ */ - - - - |