primitiveShapes::plane: Removed redundant 'explicit'
Declaration of 'explicit' constructor without a single argument are redundant.
This commit is contained in:
parent
5fc1285061
commit
2e66ae60ae
1 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue