Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121333663
geometry.cc
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, Jul 10, 02:56
Size
1 KB
Mime Type
text/x-c++
Expires
Sat, Jul 12, 02:56 (2 d)
Engine
blob
Format
Raw Data
Handle
27311502
Attached To
rCADDMESH CADD_mesher
geometry.cc
View Options
/**
* @file geometry.cc
* @author Till Junge <till.junge@epfl.ch>
* @date Thu Jul 3 15:40:34 2014
*
* @brief
*
* @section LICENSE
*
* <insert lisence here>
*
*/
/* -------------------------------------------------------------------------- */
#include "geometry.hh"
#include "stdexcept"
/* -------------------------------------------------------------------------- */
template <Uint DIM>
Real Geometry<DIM>::size_in_direction(const Real * dir,
const Real & unit) const {
return this->max_in_direction(dir, unit) - this->min_in_direction(dir, unit);
}
/* -------------------------------------------------------------------------- */
template <Uint DIM>
void Geometry<DIM>::generate_surface_points(const Mesh<DIM> & auxiliary,
const std::vector<Real> & refinement,
const Real step_size[DIM],
const Real & repr_const,
const bool periodicity[DIM],
PointContainer<DIM> & points) const {
throw std::runtime_error("Not implemented");
}
/* -------------------------------------------------------------------------- */
template <Uint DIM>
void Geometry<DIM>::complement_periodically(const Mesh<DIM> & auxiliary,
const std::vector<Real> & refinement,
const PointContainer<DIM> & points,
PointContainer<DIM> & complement,
int direction,
Uint dim) const {
throw std::runtime_error("Not implemented");
}
/* -------------------------------------------------------------------------- */
template class Geometry<twoD>;
template class Geometry<threeD>;
Event Timeline
Log In to Comment