You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
--- boost/polygon/detail/minkowski.hpp 2013-05-31 02:24:16 +0000
+++ boost/polygon/detail/minkowski.hpp 2013-05-31 02:26:26 +0000
@@ -30,13 +30,13 @@
static void convolve_two_point_sequences(polygon_set& result, itrT1 ab, itrT1 ae, itrT2 bb, itrT2 be) { if(ab == ae || bb == be) return;- point first_a = *ab;
+ // point first_a = *ab;
point prev_a = *ab; std::vector<point> vec; polygon poly; ++ab; for( ; ab != ae; ++ab) {- point first_b = *bb;
+ // point first_b = *bb;
point prev_b = *bb; itrT2 tmpb = bb; ++tmpb;
|