0026747: Some constructors of gp_Parab2d class contain redundant parameters
[occt.git] / src / gce / gce_MakeParab2d.cxx
index 627a817..94fd881 100644 (file)
@@ -5,8 +5,8 @@
 //
 // This file is part of Open CASCADE Technology software library.
 //
-// This library is free software; you can redistribute it and / or modify it
-// under the terms of the GNU Lesser General Public version 2.1 as published
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
 // by the Free Software Foundation, with special exception defined in the file
 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
 // distribution for complete text of the license and disclaimer of any warranty.
 // Alternatively, this file may be used under the terms of Open CASCADE
 // commercial license or contractual agreement.
 
-#include <gce_MakeParab2d.ixx>
+
+#include <gce_MakeParab2d.hxx>
 #include <gp.hxx>
+#include <gp_Ax2d.hxx>
+#include <gp_Ax22d.hxx>
+#include <gp_Parab2d.hxx>
+#include <gp_Pnt2d.hxx>
 #include <StdFail_NotDone.hxx>
 
 gce_MakeParab2d::gce_MakeParab2d(const gp_Ax22d&     A     ,
@@ -47,13 +52,6 @@ gce_MakeParab2d::gce_MakeParab2d(const gp_Ax2d&  D            ,
   TheError = gce_Done;
 }
 
-gce_MakeParab2d::gce_MakeParab2d(const gp_Ax22d&  D ,
-                                const gp_Pnt2d& F  )
-{
-  TheParab2d = gp_Parab2d(D,F);
-  TheError = gce_Done;
-}
-
 //=========================================================================
 //   Creation d une Parabole 2d de gp de centre <Center> et de sommet     +
 //   <S1> .                                                               +
@@ -75,7 +73,7 @@ gce_MakeParab2d::gce_MakeParab2d(const gp_Pnt2d&        S      ,
 
 const gp_Parab2d& gce_MakeParab2d::Value () const
 {
-  StdFail_NotDone_Raise_if(!TheError == gce_Done,"");
+  StdFail_NotDone_Raise_if(TheError != gce_Done,"");
   return TheParab2d;
 }