File: Kernel_type.h

package info (click to toggle)
cgal 6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 144,912 kB
  • sloc: cpp: 810,858; ansic: 208,477; sh: 493; python: 411; makefile: 286; javascript: 174
file content (13 lines) | stat: -rw-r--r-- 362 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef KERNEL_TYPE_H
#define KERNEL_TYPE_H

#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Mesh_3/Robust_intersection_traits_3.h>

namespace kernel_type_h {
  typedef CGAL::Exact_predicates_inexact_constructions_kernel K1;
}

typedef CGAL::Mesh_3::Robust_intersection_traits_3<kernel_type_h::K1> Kernel;

#endif // KERNEL_TYPE_H