Skip to content
Snippets Groups Projects
Commit dc2479eb authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MeL] Add Node ctor from std::array of 3 doubles.

parent b2631c49
No related branches found
No related tags found
No related merge requests found
...@@ -22,6 +22,11 @@ Node::Node(const double coords[3], std::size_t id) ...@@ -22,6 +22,11 @@ Node::Node(const double coords[3], std::size_t 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) Node::Node(double x, double y, double z, std::size_t id)
: MathLib::Point3dWithID(std::array<double,3>({{x, y, z}}), id) : MathLib::Point3dWithID(std::array<double,3>({{x, y, z}}), id)
{ {
......
...@@ -49,6 +49,9 @@ public: ...@@ -49,6 +49,9 @@ public:
/// Constructor using a coordinate array /// Constructor using a coordinate array
Node(const double coords[3], std::size_t id = std::numeric_limits<std::size_t>::max()); Node(const double coords[3], std::size_t id = std::numeric_limits<std::size_t>::max());
/// Constructor using a coordinate array
Node(std::array<double, 3> const& coords, std::size_t id = std::numeric_limits<std::size_t>::max());
/// Constructor using single coordinates /// Constructor using single coordinates
Node(double x, double y, double z, std::size_t id = std::numeric_limits<std::size_t>::max()); Node(double x, double y, double z, std::size_t id = std::numeric_limits<std::size_t>::max());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment