const unsigned int child_index)
{
Assert (child_index < GeometryInfo<dim>::children_per_cell,
- ExcIndexRange (child_index, GeometryInfo<dim>::children_per_cell));
+ ExcIndexRange (child_index, 0, GeometryInfo<dim>::children_per_cell));
const double x = p[0]*2 - (child_index == 1 ? 1. : 0.);
return Point<dim>(x);
}
const unsigned int child_index)
{
Assert (child_index < GeometryInfo<dim>::children_per_cell,
- ExcIndexRange (child_index, GeometryInfo<dim>::children_per_cell));
+ ExcIndexRange (child_index, 0, GeometryInfo<dim>::children_per_cell));
const double x = p[0]*2 - ((child_index == 1) || (child_index == 2) ? 1. : 0.);
const double y = p[1]*2 - ((child_index == 2) || (child_index == 3) ? 1. : 0.);
const unsigned int child_index)
{
Assert (child_index < GeometryInfo<dim>::children_per_cell,
- ExcIndexRange (child_index, GeometryInfo<dim>::children_per_cell));
+ ExcIndexRange (child_index, 0, GeometryInfo<dim>::children_per_cell));
const double x = p[0]*2 - ((child_index == 1) || (child_index == 2) ||
(child_index == 5) || (child_index == 6) ? 1. : 0.);