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.

18 lines
596 B

  1. --- boost/polygon/detail/minkowski.hpp 2013-05-31 02:24:16 +0000
  2. +++ boost/polygon/detail/minkowski.hpp 2013-05-31 02:26:26 +0000
  3. @@ -30,13 +30,13 @@
  4. static void convolve_two_point_sequences(polygon_set& result, itrT1 ab, itrT1 ae, itrT2 bb, itrT2 be) {
  5. if(ab == ae || bb == be)
  6. return;
  7. - point first_a = *ab;
  8. + // point first_a = *ab;
  9. point prev_a = *ab;
  10. std::vector<point> vec;
  11. polygon poly;
  12. ++ab;
  13. for( ; ab != ae; ++ab) {
  14. - point first_b = *bb;
  15. + // point first_b = *bb;
  16. point prev_b = *bb;
  17. itrT2 tmpb = bb;
  18. ++tmpb;