Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91038539
mesh_segment_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
Thu, Nov 7, 04:45
Size
3 KB
Mime Type
text/x-c++
Expires
Sat, Nov 9, 04:45 (2 d)
Engine
blob
Format
Raw Data
Handle
21595238
Attached To
rAKA akantu
mesh_segment_intersector.hh
View Options
/**
* @file mesh_segment_intersector.hh
*
* @author Lucas Frerot <lucas.frerot@epfl.ch>
* @author Clement Roux <clement.roux@epfl.ch>
* @author Marco Vocialta <marco.vocialta@epfl.ch>
*
* @date creation: Wed Apr 29 2015
* @date last modification: Wed Jan 31 2018
*
* @brief Computation of mesh intersection with segments
*
* @section LICENSE
*
* Copyright (©) 2015-2018 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_SEGMENT_INTERSECTOR_HH__
#define __AKANTU_MESH_SEGMENT_INTERSECTOR_HH__
#include "aka_common.hh"
#include "mesh_geom_intersector.hh"
#include "mesh_geom_common.hh"
/* -------------------------------------------------------------------------- */
namespace
akantu
{
template
<
UInt
dim
,
ElementType
type
>
class
MeshSegmentIntersector
:
public
MeshGeomIntersector
<
dim
,
type
,
Triangle
<
cgal
::
Cartesian
>
,
cgal
::
Cartesian
::
Segment_3
,
cgal
::
Cartesian
>
{
using
K
=
cgal
::
Cartesian
;
/// Parent class type
typedef
MeshGeomIntersector
<
dim
,
type
,
Triangle
<
K
>
,
K
::
Segment_3
,
K
>
parent_type
;
/// Result of intersection function type
typedef
typename
IntersectionTypeHelper
<
TreeTypeHelper
<
Triangle
<
K
>
,
K
>
,
K
::
Segment_3
>::
intersection_type
result_type
;
/// Pair of segments and element id
typedef
std
::
pair
<
K
::
Segment_3
,
UInt
>
pair_type
;
public
:
/// Construct from mesh
explicit
MeshSegmentIntersector
(
Mesh
&
mesh
,
Mesh
&
result_mesh
);
/// Destructor
virtual
~
MeshSegmentIntersector
();
public
:
/**
* @brief Computes the intersection of the mesh with a segment
*
* @param query the segment to compute the intersections with the mesh
*/
virtual
void
computeIntersectionQuery
(
const
K
::
Segment_3
&
query
);
/// Compute intersection points between the mesh and a query
virtual
void
computeMeshQueryIntersectionPoint
(
const
K
::
Segment_3
&
query
,
UInt
nb_old_nodes
);
/// Compute the embedded mesh
virtual
void
buildResultFromQueryList
(
const
std
::
list
<
K
::
Segment_3
>
&
query_list
);
void
setPhysicalName
(
const
std
::
string
&
other
)
{
current_physical_name
=
other
;
}
protected
:
/// Compute segments from intersection list
void
computeSegments
(
const
std
::
list
<
result_type
>
&
intersections
,
std
::
set
<
pair_type
,
segmentPairsLess
>
&
segments
,
const
K
::
Segment_3
&
query
);
protected
:
/// Result mesh
Mesh
&
result_mesh
;
/// Physical name of the current batch of queries
std
::
string
current_physical_name
;
};
}
// namespace akantu
#include "mesh_segment_intersector_tmpl.hh"
#endif
// __AKANTU_MESH_SEGMENT_INTERSECTOR_HH__
Event Timeline
Log In to Comment