https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 2c5b8e5f4452d045071b8bb34b60e53b49a5b2ad authored by wenqing on 02 March 2023, 16:49:26 UTC
Merge branch 'FE_mini_benchmark1' into 'master'
Tip revision: 2c5b8e5
Node.cpp
/**
 * \file
 * \author Karsten Rink
 * \date   2012-05-02
 * \brief  Implementation of the Node class.
 *
 * \copyright
 * Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#include "MeshLib/Node.h"

#include "Elements/Element.h"

namespace MeshLib
{
Node::Node(const double coords[3], std::size_t id)
    : MathLib::Point3dWithID(
          std::array<double, 3>{{coords[0], coords[1], coords[2]}}, id)
{
}

Node::Node(std::array<double, 3> const& coords, std::size_t id)
    : MathLib::Point3dWithID(coords, id)
{
}

Node::Node(double x, double y, double z, std::size_t id)
    : MathLib::Point3dWithID(std::array<double, 3>({{x, y, z}}), id)
{
}

Node::Node(const Node& node) : MathLib::Point3dWithID(node, node.getID()) {}
}  // namespace MeshLib
back to top