DOLFIN
DOLFIN C++ interface
Loading...
Searching...
No Matches
intersect.h
1// Copyright (C) 2013 Anders Logg
2//
3// This file is part of DOLFIN.
4//
5// DOLFIN is free software: you can redistribute it and/or modify
6// it under the terms of the GNU Lesser General Public License as published by
7// the Free Software Foundation, either version 3 of the License, or
8// (at your option) any later version.
9//
10// DOLFIN is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU Lesser General Public License for more details.
14//
15// You should have received a copy of the GNU Lesser General Public License
16// along with DOLFIN. If not, see <http://www.gnu.org/licenses/>.
17//
18// First added: 2013-04-18
19// Last changed: 2013-05-30
20
21#ifndef __INTERSECT_H
22#define __INTERSECT_H
23
24#include <memory>
25
26namespace dolfin
27{
28
29 // Forward declarations
30 class Mesh;
31 class Point;
32 class MeshPointIntersection;
33
45 std::shared_ptr<const MeshPointIntersection>
46 intersect(const Mesh& mesh, const Point& point);
47
48}
49
50#endif
Definition adapt.h:30
std::shared_ptr< const MeshPointIntersection > intersect(const Mesh &mesh, const Point &point)
Definition intersect.cpp:30