mirror of https://github.com/CGAL/cgal
36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
// ============================================================================
|
|
//
|
|
// Copyright (c) 1997 The CGAL Consortium
|
|
//
|
|
// This software and related documentation is part of an INTERNAL release
|
|
// of the Computational Geometry Algorithms Library (CGAL). It is not
|
|
// intended for general use.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// release : $CGAL_Revision: $
|
|
// release_date : $CGAL_Date: $
|
|
//
|
|
// file : include/CGAL/intersection_3.h
|
|
// source : web/intersection_3.fw
|
|
// author(s) : Geert-Jan Giezeman <geert@cs.uu.nl>
|
|
//
|
|
// coordinator : Saarbruecken
|
|
//
|
|
// ============================================================================
|
|
|
|
|
|
#ifndef CGAL_INTERSECTION_3_H
|
|
#define CGAL_INTERSECTION_3_H
|
|
|
|
#include <CGAL/intersection_3_1.h>
|
|
#include <CGAL/Triangle_3_Line_3_do_intersect.h>
|
|
#include <CGAL/Triangle_3_Plane_3_do_intersect.h>
|
|
#include <CGAL/Triangle_3_Point_3_do_intersect.h>
|
|
#include <CGAL/Triangle_3_Ray_3_do_intersect.h>
|
|
#include <CGAL/Triangle_3_Segment_3_do_intersect.h>
|
|
#include <CGAL/Triangle_3_Triangle_3_do_intersect.h>
|
|
|
|
|
|
#endif // CGAL_INTERSECTION_3_H
|