* and since access to the number of lines etc is a rather frequent
* operation, this was not an optimal solution.
*
- * @ingroup grid
* @author Wolfgang Bangerth, 1999
*/
template <int dim>
* and since access to the number of lines etc is a rather frequent
* operation, this was not an optimal solution.
*
- * @ingroup grid
* @author Wolfgang Bangerth, 1999
*/
template <>
* and since access to the number of lines etc is a rather frequent
* operation, this was not an optimal solution.
*
- * @ingroup grid
* @author Wolfgang Bangerth, 1999
*/
template <>
* and since access to the number of lines etc is a rather frequent
* operation, this was not an optimal solution.
*
- * @ingroup grid
* @author Wolfgang Bangerth, 1999
*/
template <>
// $Id$
// Version: $Name$
//
-// Copyright (C) 2006, 2007 by the deal.II authors
+// Copyright (C) 2006, 2007, 2010 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
*
* This general template is only provided to enable a specialisation below.
*
- * @ingroup grid
* @author Tobias Leicht, 2006
*/
* Faces only have a meaning in <tt>dim@>=1</tt>. In <tt>dim=1</tt> they are vertices,
* which are handled differently, so only for <tt>dim@>=2</tt> the use of TriaFaces
* is reasonable, for <tt>dim=1</tt> the class is empty.
- * @ingroup grid
*/
template<>
class TriaFaces<1>
/**
* In <tt>dim=2</tt> the cells are quads, the faces accordingly are lines.
- * @ingroup grid
*/
template<>
class TriaFaces<2>
/**
* In <tt>dim=3</tt> the cells are hexes, the faces accordingly are quads. In
* addition to that we also have to enable the storage of lines.
- * @ingroup grid
*/
template<>
class TriaFaces<3>
// $Id$
// Version: $Name$
//
-// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors
+// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2010 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
* two adjacent faces have different boundary indicators), and
* material data for cells.
*
- * @ingroup grid
* @author Wolfgang Bangerth, Guido Kanschat, 1998, 2007
*/
template <int dim>
// $Id$
// Version: $Name$
//
-// Copyright (C) 2006, 2007, 2008, 2009 by the deal.II authors
+// Copyright (C) 2006, 2007, 2008, 2009, 2010 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
* Objects of these classes are included in the TriaLevel and TriaFaces
* classes.
*
- * @ingroup grid
* @author Tobias Leicht, Guido Kanschat, 2006, 2007
*/
* For hexahedrons the data of TriaObjects needs to be extended, as we can obtain faces
* (quads) in non-standard-orientation, therefore we declare a class TriaObjectsHex, which
* additionaly contains a bool-vector of the face-orientations.
- * @ingroup grid
*/
class TriaObjectsHex: public TriaObjects<TriaObject<3> >
* can obtain faces (quads) with lines in non-standard-orientation, therefore we
* declare a class TriaObjectsQuad3D, which additionaly contains a bool-vector
* of the line-orientations.
- * @ingroup grid
*/
class TriaObjectsQuad3D: public TriaObjects<TriaObject<2> >