Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

do_intersect function on arrangement with curves and x-montone curves #8782

Closed
Edkirito opened this issue Mar 13, 2025 · 3 comments · Fixed by #8786
Closed

do_intersect function on arrangement with curves and x-montone curves #8782

Edkirito opened this issue Mar 13, 2025 · 3 comments · Fixed by #8786

Comments

@Edkirito
Copy link

do_intersect(Arrangement_on_surface_2<GeometryTraits_2, TopologyTraits>& arr,

I am using arrangement with bezier curve traits and there are error in do_intersect function. After check I suppose the right as below.
The argument type should be Curve_2 not X_monotone_curve_2 since they are not the same.
And a bug fix at std::get_if<Face_const_handle>.

template <typename GeometryTraits_2, typename TopologyTraits,
          typename PointLocation>
bool
do_intersect(Arrangement_on_surface_2<GeometryTraits_2, TopologyTraits>& arr,
             const typename GeometryTraits_2::Curve_2& c,
             const PointLocation& pl, std::is_same<int, double>::type)
{
  typedef GeometryTraits_2                              Gt2;
  typedef TopologyTraits                                Tt;

  // Obtain an arrangement accessor.
  typedef Arrangement_on_surface_2<Gt2, Tt>             Arr;

  // Break the input curve into x-monotone subcurves and isolated points.
  typedef Arr_traits_adaptor_2<Gt2>                     Traits_adaptor_2;

  typedef typename Gt2::Point_2                         Point_2;
  typedef typename Gt2::X_monotone_curve_2              X_monotone_curve_2;
  typedef std::variant<Point_2, X_monotone_curve_2>   Make_x_monotone_result;
  typedef typename Arr::Face_const_handle               Face_const_handle;

  const Traits_adaptor_2* traits =
    static_cast<const Traits_adaptor_2*>(arr.geometry_traits());

  std::list<Make_x_monotone_result> x_objects;
  traits->make_x_monotone_2_object()(c, std::back_inserter(x_objects));

  // Insert each x-monotone curve into the arrangement.
  for (const auto& x_obj : x_objects) {
    // Act according to the type of the current object.
    const X_monotone_curve_2* x_curve = std::get_if<X_monotone_curve_2>(&x_obj);
    if (x_curve != nullptr) {
      // Check if the x-monotone subcurve intersects the arrangement.
      if (do_intersect(arr, *x_curve, pl) == true) return true;
      continue;
    }

    const Point_2* iso_p = std::get_if<Point_2>(&x_obj);
    CGAL_assertion(iso_p != nullptr);

    // Check whether the isolated point lies inside a face (otherwise,
    // it coincides with a vertex or an edge).
    auto obj = pl.locate(*iso_p);
    if (std::get_if<Face_const_handle>(&obj) != nullptr) return true;
  }

  // If we reached here, the curve does not intersect the arrangement.
  return false;
}
@efifogel
Copy link
Member

efifogel commented Mar 14, 2025 via email

@Edkirito
Copy link
Author

Hi Edkirito,
You are correct.
Thanks for the fix.
Go ahead and create a PR, or let me know, and I'll do it.
Good job,
Efi


/_____/) o /_________ __ //
(____ ( ( ( (/ (/-(-'_(/
_/

Sure. You can do it. Thanks.

@efifogel
Copy link
Member

efifogel commented Mar 15, 2025 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants