// ---------------------------------------------------------------------
// $Id$
//
-// Copyright (C) 1999 - 2013 by the deal.II authors
+// Copyright (C) 1999 - 2014 by the deal.II authors
//
// This file is part of the deal.II library.
//
template <int dim>
void
parallelogram (Triangulation<dim> &tria,
- const Point<dim> corners[dim],
+ const Point<dim> (&corners)[dim],
const bool colorize=false);
/**
* @param r The inner radius of the
* torus.
*/
-
void torus (Triangulation<2,3> &tria,
const double R,
const double r);
template<>
void
parallelogram (Triangulation<3> &tria,
- const Point<3> corners[3],
+ const Point<3> (&corners)[3],
const bool colorize)
{
Assert (false, ExcNotImplemented());
template<>
void
parallelogram (Triangulation<1> &tria,
- const Point<1> corners[1],
+ const Point<1> (&corners)[1],
const bool colorize)
{
Assert (false, ExcNotImplemented());
template<>
void
parallelogram (Triangulation<2> &tria,
- const Point<2> corners[2],
+ const Point<2> (&corners)[2],
const bool colorize)
{
std::vector<Point<2> > vertices (GeometryInfo<2>::vertices_per_cell);