Revision ac5b6ffcb8f5f8e31af34161cc9fd2ef85d033a8 authored by Laurent Rineau on 24 July 2020, 13:54:51 UTC, committed by GitHub on 24 July 2020, 13:54:51 UTC
2 parent s a84927d + 1ffbd83
Raw File
types.h
#ifndef AABB_DEMO_TYPES_H
#define AABB_DEMO_TYPES_H

#include <CGAL/Simple_cartesian.h>

typedef CGAL::Simple_cartesian<double> Kernel; // fastest in experiments

typedef Kernel::FT FT;
typedef Kernel::Ray_3 Ray;
typedef Kernel::Line_3 Line;
typedef Kernel::Point_3 Point;
typedef Kernel::Plane_3 Plane;
typedef Kernel::Vector_3 Vector;
typedef Kernel::Segment_3 Segment;
typedef Kernel::Triangle_3 Triangle;
typedef Kernel::Aff_transformation_3 Aff_transformation;

#include <CGAL/Polyhedron_3.h>
typedef CGAL::Polyhedron_3<Kernel> Polyhedron;

#endif // AABB_DEMO_TYPES_H
back to top