Page MenuHomec4science

geometry.cc
No OneTemporary

File Metadata

Created
Sun, Oct 20, 19:03

geometry.cc

/**
* @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