Remove useless test + fix link

This commit is contained in:
Mael Rouxel-Labbé 2022-03-23 16:54:37 +01:00
parent a43b79a69f
commit da8b51eaec
3 changed files with 1 additions and 20 deletions

View File

@ -214,7 +214,7 @@ this function takes as input a polygon soup or a polygon mesh: `CGAL::alpha_wrap
There is no prerequisite on the input connectivity so that it can take an arbitrary triangle soup,
with islands, self-intersections, or overlaps, as well as combinatorial or geometrical degeneracies.
The underlying traits class must be a model of the `AlphaWrapTraits_3` concept. It should use
The underlying traits class must be a model of the `Kernel` concept. It should use
a floating point number type as inexactness is inherent to the algorithm since there is no closed
form description of new vertices on the offset surface.

View File

@ -12,4 +12,3 @@ create_single_source_cgal_program("test_AW3_cavity_initializations.cpp")
create_single_source_cgal_program("test_AW3_manifoldness.cpp")
create_single_source_cgal_program("test_AW3_multiple_calls.cpp")
create_single_source_cgal_program("test_AW3_compilation.cpp")
create_single_source_cgal_program("test_AW3_traits.cpp")

View File

@ -1,18 +0,0 @@
#include <CGAL/Surface_mesh.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/alpha_wrap_3.h>
#include <CGAL/Polygon_mesh_processing/IO/polygon_mesh_io.h>
using namespace CGAL::Alpha_wraps_3::internal;
using Kernel = CGAL::Exact_predicates_inexact_constructions_kernel;
using Point_3 = Kernel::Point_3;
using Vector_3 = Kernel::Vector_3;
using Mesh = CGAL::Surface_mesh<Point_3>;
int main(int argc, char** argv)
{
}