0027280: HLR algorithms taking seam edges into account
[occt.git] / src / HLRAppli / HLRAppli_ReflectLines.cxx
index 096b98a..9f1a0e9 100644 (file)
@@ -1,28 +1,26 @@
 // File:      HLRAppli_ReflectLines.cxx
 // Created:   05.12.12 12:55:50
 // Created by: Julia GERASIMOVA
-// Copyright (c) 2001-2012 OPEN CASCADE SAS
+// Copyright (c) 2001-2014 OPEN CASCADE SAS
 //
-// The content of this file is subject to the Open CASCADE Technology Public
-// License Version 6.5 (the "License"). You may not use the content of this file
-// except in compliance with the License. Please obtain a copy of the License
-// at http://www.opencascade.org and read it completely before using this file.
+// This file is part of Open CASCADE Technology software library.
 //
-// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
-// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
+// 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.
 //
-// The Original Code and all software distributed under the License is
-// distributed on an "AS IS" basis, without warranty of any kind, and the
-// Initial Developer hereby disclaims all such warranties, including without
-// limitation, any warranties of merchantability, fitness for a particular
-// purpose or non-infringement. Please see the License for the specific terms
-// and conditions governing the rights and limitations under the License.
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
 
 #include <HLRAppli_ReflectLines.hxx>
 #include <HLRBRep_Algo.hxx>
 #include <HLRBRep_HLRToShape.hxx>
 #include <BRep_Builder.hxx>
 #include <gp_Ax3.hxx>
+#include <BRepLib.hxx>
+
 
 //=======================================================================
 //function : HLRAppli_ReflectLines
@@ -72,14 +70,36 @@ void HLRAppli_ReflectLines::SetAxes(const Standard_Real Nx,
 
 void HLRAppli_ReflectLines::Perform()
 {
-  Handle(HLRBRep_Algo) aHLRAlgo = new HLRBRep_Algo();
-  aHLRAlgo->Add( myShape, 0 );
-  aHLRAlgo->Projector( myProjector );
-  aHLRAlgo->Update();
-  aHLRAlgo->Hide();
+  myHLRAlgo = new HLRBRep_Algo();
+  myHLRAlgo->Add( myShape, 0 );
+  myHLRAlgo->Projector( myProjector );
+  myHLRAlgo->Update();
+  myHLRAlgo->Hide();
+
+  /*
   HLRBRep_HLRToShape aHLRToShape( aHLRAlgo );
 
   myCompound = aHLRToShape.OutLineVCompound3d();
+
+  BRepLib::SameParameter(myCompound,Precision::PConfusion(),Standard_False);
+  */
+}
+
+//=======================================================================
+//function : GetCompoundOf3dEdges
+//purpose  :
+//=======================================================================
+
+TopoDS_Shape HLRAppli_ReflectLines::GetCompoundOf3dEdges(const HLRBRep_TypeOfResultingEdge type,
+                                                         const Standard_Boolean            visible)
+{
+  HLRBRep_HLRToShape aHLRToShape( myHLRAlgo );
+
+  TopoDS_Shape theCompound = aHLRToShape.CompoundOfEdges(type, visible, Standard_True);
+
+  BRepLib::SameParameter(theCompound,Precision::PConfusion(),Standard_False);
+
+  return theCompound;
 }
 
 //=======================================================================
@@ -87,7 +107,7 @@ void HLRAppli_ReflectLines::Perform()
 //purpose  :
 //=======================================================================
 
-TopoDS_Shape HLRAppli_ReflectLines::GetResult() const
+TopoDS_Shape HLRAppli_ReflectLines::GetResult()
 {
-  return myCompound;
+  return GetCompoundOf3dEdges(HLRBRep_OutLine, Standard_True);
 }