Skip to content
Snippets Groups Projects
Commit 50599dd8 authored by Tom Fischer's avatar Tom Fischer
Browse files

[MaL] TemplatePoint: Remove unused setCoords().

parent 574baec1
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,6 @@ public: ...@@ -44,7 +44,6 @@ public:
*/ */
explicit TemplatePoint(std::array<T,DIM> const& x); explicit TemplatePoint(std::array<T,DIM> const& x);
/** virtual destructor */ /** virtual destructor */
virtual ~TemplatePoint() {} virtual ~TemplatePoint() {}
...@@ -74,13 +73,6 @@ public: ...@@ -74,13 +73,6 @@ public:
return _x.data(); return _x.data();
} }
/** set the coordinates of the point */
void setCoords (const T* coords)
{
for (unsigned i=0; i<DIM; i++)
_x[i] = coords[i];
}
/** write point coordinates into stream (used from operator<<) /** write point coordinates into stream (used from operator<<)
* \param os a standard output stream * \param os a standard output stream
*/ */
......
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