Forked from
ogs / ogs
27182 commits behind the upstream repository.
-
Lars Bilke authoredLars Bilke authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Node.cpp 405 B
/**
* \file Node.cpp
*
* Created on 2012-05-02 by Karsten Rink
*/
#include "Node.h"
namespace MeshLib {
Node::Node(const double coords[3], unsigned id)
: GeoLib::PointWithID(coords, id)
{
}
Node::Node(double x, double y, double z, unsigned id)
: GeoLib::PointWithID(x, y, z, id)
{
}
Node::Node(const Node &node)
: GeoLib::PointWithID(node.getCoords(), node.getID())
{
}
Node::~Node()
{
}
}