12#ifndef DUMUX_GEOMETRY_SPHERE_HH
13#define DUMUX_GEOMETRY_SPHERE_HH
15#include <dune/common/fvector.hh>
23template<
class Scalar,
int dim>
27 using Point = Dune::FieldVector<Scalar, dim>;
A simple sphere type.
Definition: sphere.hh:25
Scalar radius() const
Definition: sphere.hh:39
Sphere(const Point ¢er, Scalar radius)
Definition: sphere.hh:34
Dune::FieldVector< Scalar, dim > Point
Definition: sphere.hh:27
const Point & center() const
Definition: sphere.hh:42
Sphere()
Definition: sphere.hh:29