Newer
Older
* Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.net/LICENSE.txt
*
*
*/
#include "Face.h"
Karsten Rink
committed
#include "Edge.h"
namespace MeshLib {
Karsten Rink
committed
Face::Face(Node** nodes, MshElemType::type type, unsigned value)
: Element(nodes, type, value)
{
}
Karsten Rink
committed
Face::Face(MshElemType::type type, unsigned value)
: Element(type, value)
{
}
Face::~Face()
{
Karsten Rink
committed