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

[GL] Make class Surface final.

parent beb9e391
No related branches found
No related tags found
No related merge requests found
...@@ -32,14 +32,14 @@ class SurfaceGrid; ...@@ -32,14 +32,14 @@ class SurfaceGrid;
* to a vector of (pointers to) points (_sfc_pnts) and a vector that stores * to a vector of (pointers to) points (_sfc_pnts) and a vector that stores
* the Triangles consisting of points from _sfc_pnts. * the Triangles consisting of points from _sfc_pnts.
* */ * */
class Surface : public GeoObject class Surface final : public GeoObject
{ {
public: public:
Surface(const std::vector<Point*>& pnt_vec); Surface(const std::vector<Point*>& pnt_vec);
virtual ~Surface(); ~Surface();
/// return a geometry type /// return a geometry type
virtual GEOTYPE getGeoType() const { return GEOTYPE::SURFACE; } GEOTYPE getGeoType() const override { return GEOTYPE::SURFACE; }
/** /**
* adds three indices describing a triangle and updates the bounding box * adds three indices describing a triangle and updates the bounding box
* */ * */
......
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