Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91490099
embedded_interface.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
Mon, Nov 11, 15:18
Size
2 KB
Mime Type
text/x-c++
Expires
Wed, Nov 13, 15:18 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22219906
Attached To
rAKA akantu
embedded_interface.hh
View Options
/**
* @file embedded_interface.hh
*
* @author Lucas Frerot <lucas.frerot@epfl.ch>
*
* @date creation: Mon Mar 23 2015
* @date last modification: Mon Mar 23 2015
*
* @brief Class used to represent embedded interfaces
*
* @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_EMBEDDED_INTERFACE_HH__
#define __AKANTU_EMBEDDED_INTERFACE_HH__
#include "aka_common.hh"
#include "parsable.hh"
#include <CGAL/Cartesian.h>
/* -------------------------------------------------------------------------- */
__BEGIN_AKANTU__
class
EmbeddedInterface
:
public
Parsable
{
typedef
CGAL
::
Cartesian
<
Real
>
K
;
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public
:
EmbeddedInterface
(
UInt
dim
,
const
ID
&
id
=
""
);
virtual
~
EmbeddedInterface
();
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public
:
K
::
Segment_3
getPrimitive
()
const
;
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
public
:
AKANTU_GET_MACRO
(
Name
,
name
,
const
std
::
string
&
);
AKANTU_GET_MACRO
(
MaterialName
,
mat_name
,
const
std
::
string
&
);
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
protected
:
std
::
string
name
;
std
::
string
mat_name
;
Matrix
<
Real
>
points
;
};
__END_AKANTU__
#endif
// __AKANTU_EMBEDDED_INTERFACE_HH__
Event Timeline
Log In to Comment