0027207: New universal method for extracting of results of work of HLRBRep_Algo algorithm
[occt.git] / src / HLRBRep / HLRBRep_HLRToShape.lxx
old mode 100755 (executable)
new mode 100644 (file)
index ba8dc4c..286372a
@@ -1,7 +1,18 @@
-// File:      HLRBRep_HLRToShape.lxx
-// Created:   Tue Nov  2 15:55:51 1993
-// Author:    Christophe MARION
-// Copyright: OPEN CASCADE 2000
+// Created on: 1993-11-02
+// Created by: Christophe MARION
+// Copyright (c) 1993-1999 Matra Datavision
+// Copyright (c) 1999-2014 OPEN CASCADE SAS
+//
+// 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 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 <TopoDS_Shape.hxx>
 
@@ -64,6 +75,14 @@ HLRBRep_HLRToShape::RgNLineVCompound(const TopoDS_Shape& S)
 inline TopoDS_Shape HLRBRep_HLRToShape::OutLineVCompound()
 { return InternalCompound(2,Standard_True,TopoDS_Shape()); }
 
+//=======================================================================
+//function : OutLineVCompound3d
+//purpose  : 
+//=======================================================================
+
+inline TopoDS_Shape HLRBRep_HLRToShape::OutLineVCompound3d()
+{ return InternalCompound(2,Standard_True,TopoDS_Shape(),Standard_True); }
+
 //=======================================================================
 //function : OutLineVCompound
 //purpose  : 
@@ -174,3 +193,26 @@ inline TopoDS_Shape HLRBRep_HLRToShape::IsoLineHCompound()
 inline TopoDS_Shape
 HLRBRep_HLRToShape::IsoLineHCompound(const TopoDS_Shape& S)
 { return InternalCompound(1,Standard_False,S); }
+
+//=======================================================================
+//function : CompoundOfEdges
+//purpose  : 
+//=======================================================================
+
+inline TopoDS_Shape
+HLRBRep_HLRToShape::CompoundOfEdges(const HLRBRep_TypeOfResultingEdge type,
+                                    const Standard_Boolean            visible,
+                                    const Standard_Boolean            In3d)
+{ return InternalCompound(type,visible,TopoDS_Shape(),In3d); }
+
+//=======================================================================
+//function : CompoundOfEdges
+//purpose  : 
+//=======================================================================
+
+inline TopoDS_Shape
+HLRBRep_HLRToShape::CompoundOfEdges(const TopoDS_Shape& S,
+                                    const HLRBRep_TypeOfResultingEdge type,
+                                    const Standard_Boolean            visible,
+                                    const Standard_Boolean            In3d)
+{ return InternalCompound(type,visible,S,In3d); }