3#ifndef DUNE_GRIDGLUE_COMMON_CROSSPRODUCT_HH
4#define DUNE_GRIDGLUE_COMMON_CROSSPRODUCT_HH 1
14template <
class T,
int dim>
15static Dune::FieldVector<T,dim> crossProduct(
const Dune::FieldVector<T,dim>& a,
16 const Dune::FieldVector<T,dim>& b)
19 DUNE_THROW(Dune::NotImplemented,
"crossProduct does not work for dimension " << dim);
21 Dune::FieldVector<T,dim> c;
22 c[0] = a[1]*b[2] - a[2]*b[1];
23 c[1] = a[2]*b[0] - a[0]*b[2];
24 c[2] = a[0]*b[1] - a[1]*b[0];