We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
runtime error
The below code runs correctly. But if i change
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
to
typedef CGAL::Simpel_cartesian<float> K;
The program crashes when calling Cgal::intersection.
typedef CGAL::Exact_predicates_inexact_constructions_kernel K; typedef K::Point_2 Point_2; typedef CGAL::Polygon_2<K> Polygon_2; typedef CGAL::Polygon_with_holes_2<K> Polygon_with_holes_2; Polygon_2 poly1; poly1.push_back(Point_2(36.5068358, -259.537109)); poly1.push_back(Point_2(568.399414, 96.3984375)); poly1.push_back(Point_2(180.207031, 676.494141)); poly1.push_back(Point_2(-351.685547, 320.557617)); Polygon_2 poly2; poly2.push_back(Point_2(-333.224609, -508.294922)); poly2.push_back(Point_2(196.667969, -152.359375)); poly2.push_back(Point_2(-191.524414, 427.736328)); poly2.push_back(Point_2(-723.416992, 71.7998047)); std::list<Polygon_with_holes_2> intR; Cgal::intersection(poly1, poly2, std::back_inserter(intR));
Can you tell me why this happens and how I can avoid it? and i know typedef CGAL::Simpel_cartesian<float> K; is faster, i want use it`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue Details
runtime error
The below code runs correctly. But if i change
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
to
typedef CGAL::Simpel_cartesian<float> K;
The program crashes when calling Cgal::intersection.
Source Code
Environment
Can you tell me why this happens and how I can avoid it? and i know
typedef CGAL::Simpel_cartesian<float> K;
is faster, i want use it`
The text was updated successfully, but these errors were encountered: