Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90380360
mesh_geom_intersector.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 03:19
Size
2 KB
Mime Type
text/x-c++
Expires
Sun, Nov 3, 03:19 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
21992573
Attached To
rAKA akantu
mesh_geom_intersector.hh
View Options
/**
* @file mesh_geom_intersector.hh
*
* @author Lucas Frerot <lucas.frerot@epfl.ch>
*
* @date creation: Wed Apr 29 2015
* @date last modification: Wed Apr 29 2015
*
* @brief General class for intersection computations
*
* @section LICENSE
*
* Copyright (©) 2010-2015 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_MESH_GEOM_INTERSECTOR_HH__
#define __AKANTU_MESH_GEOM_INTERSECTOR_HH__
#include "aka_common.hh"
#include "mesh_abstract_intersector.hh"
#include "mesh_geom_factory.hh"
/* -------------------------------------------------------------------------- */
__BEGIN_AKANTU__
/**
* @brief Class used to perform intersections on a mesh and construct output data
*/
template
<
UInt
dim
,
ElementType
type
,
class
Primitive
,
class
Query
,
class
Kernel
>
class
MeshGeomIntersector
:
public
MeshAbstractIntersector
<
Query
>
{
public
:
/// Construct from mesh
explicit
MeshGeomIntersector
(
const
Mesh
&
mesh
);
/// Destructor
virtual
~
MeshGeomIntersector
();
public
:
/// Construct the primitive tree object
virtual
void
constructData
();
protected
:
/// Factory object containing the primitive tree
MeshGeomFactory
<
dim
,
type
,
Primitive
,
Kernel
>
factory
;
};
__END_AKANTU__
#include "mesh_geom_intersector_tmpl.hh"
#endif
// __AKANTU_MESH_GEOM_INTERSECTOR_HH__
Event Timeline
Log In to Comment