Fixed type error

This commit is contained in:
Alessandro Ranellucci 2016-03-26 12:21:54 +01:00
parent f5a5eb3736
commit 660b56acb5
3 changed files with 24 additions and 7 deletions

View file

@ -42,6 +42,12 @@
std::string wkt();
Points concave_points(double angle);
Points convex_points(double angle);
Clone<Point> intersection(Line* line)
%code{%
Point p;
(void)THIS->intersection(*line, &p);
RETVAL = p;
%};
%{
Polygon*