Removed drawing until it is supported for rational curves

This commit is contained in:
Efi Fogel 2025-09-17 11:07:04 +03:00
parent d297dd4e53
commit 2046b32e80
1 changed files with 0 additions and 3 deletions

View File

@ -2,7 +2,6 @@
// Constructing an arrangement of arcs of rational functions. // Constructing an arrangement of arcs of rational functions.
#include <CGAL/config.h> #include <CGAL/config.h>
#include <CGAL/draw_arrangement_2.h>
#ifndef CGAL_USE_CORE #ifndef CGAL_USE_CORE
#include <iostream> #include <iostream>
@ -57,8 +56,6 @@ int main() {
insert(arr, arcs.begin(), arcs.end()); insert(arr, arcs.begin(), arcs.end());
print_arrangement(arr); print_arrangement(arr);
CGAL::draw(arr, "rational_functions");
return 0; return 0;
} }