Bugfix: seam_position = aligned failed in certaim circumstances because of faulty concave points detection. Includes regression test

This commit is contained in:
Alessandro Ranellucci 2014-06-11 21:57:32 +02:00
parent 1674108bac
commit 5dcc1eab79
6 changed files with 54 additions and 3 deletions

View file

@ -37,6 +37,8 @@
%code{% RETVAL = new Point(THIS->projection_onto(*line)); %};
Clone<Point> negative()
%code{% RETVAL = new Point(THIS->negative()); %};
bool coincides_with_epsilon(Point* point)
%code{% RETVAL = THIS->coincides_with_epsilon(*point); %};
%{