Skip to content
Snippets Groups Projects
Commit 0bb9459c authored by Henry Weller's avatar Henry Weller
Browse files

primitiveShapes::plane: Removed redundant 'explicit'

Declaration of 'explicit' constructor without a single argument are redundant.
parent 7f330cef
Branches
Tags
No related merge requests found
......@@ -129,10 +129,10 @@ public:
explicit plane(const vector& normalVector);
//- Construct from normal vector and point in plane
explicit plane(const point& basePoint, const vector& normalVector);
plane(const point& basePoint, const vector& normalVector);
//- Construct from three points in plane
explicit plane
plane
(
const point& point1,
const point& point2,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment