primitiveShapes::plane: Removed redundant 'explicit'

Declaration of 'explicit' constructor without a single argument are redundant.
This commit is contained in:
Henry Weller 2016-11-23 16:22:10 +00:00
parent 5fc1285061
commit 2e66ae60ae

View file

@ -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,