Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94165853
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
Wed, Dec 4, 10:17
Size
1 KB
Mime Type
text/x-c++
Expires
Fri, Dec 6, 10:17 (1 d, 13 h)
Engine
blob
Format
Raw Data
Handle
22712558
Attached To
rAKA akantu
mesh_geom_intersector.hh
View Options
/**
* Copyright (©) 2015-2023 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* This file is part of Akantu
*
* 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"
/* -------------------------------------------------------------------------- */
namespace akantu {
/**
* @brief Class used to perform intersections on a mesh and construct output
* data
*/
template <Int dim, ElementType type, class Primitive, class Query, class Kernel>
class MeshGeomIntersector : public MeshAbstractIntersector<Query> {
public:
/// Construct from mesh
explicit MeshGeomIntersector(Mesh & mesh);
/// Destructor
~MeshGeomIntersector() override = default;
public:
/// Construct the primitive tree object
void constructData(GhostType ghost_type = _not_ghost) override;
protected:
/// Factory object containing the primitive tree
MeshGeomFactory<dim, type, Primitive, Kernel> factory;
};
} // namespace akantu
#include "mesh_geom_intersector_tmpl.hh"
#endif // AKANTU_MESH_GEOM_INTERSECTOR_HH_
Event Timeline
Log In to Comment