Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:04:13

0001 // Created on: 1996-09-04
0002 // Created by: Jacques GOUSSARD
0003 // Copyright (c) 1996-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
0016 
0017 #ifndef _LocOpe_DPrism_HeaderFile
0018 #define _LocOpe_DPrism_HeaderFile
0019 
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 #include <Standard_Handle.hxx>
0023 
0024 #include <BRepFill_Evolved.hxx>
0025 #include <TopoDS_Shape.hxx>
0026 #include <TopoDS_Face.hxx>
0027 #include <TopoDS_Wire.hxx>
0028 #include <TopoDS_Edge.hxx>
0029 #include <TColGeom_SequenceOfCurve.hxx>
0030 #include <TopTools_DataMapOfShapeListOfShape.hxx>
0031 #include <TopTools_ListOfShape.hxx>
0032 class Geom_Curve;
0033 
0034 
0035 //! Defines a  pipe  (near from   Pipe from BRepFill),
0036 //! with modifications provided for the Pipe feature.
0037 class LocOpe_DPrism 
0038 {
0039 public:
0040 
0041   DEFINE_STANDARD_ALLOC
0042 
0043   
0044   Standard_EXPORT LocOpe_DPrism(const TopoDS_Face& Spine, const Standard_Real Height1, const Standard_Real Height2, const Standard_Real Angle);
0045   
0046   Standard_EXPORT LocOpe_DPrism(const TopoDS_Face& Spine, const Standard_Real Height, const Standard_Real Angle);
0047   
0048   Standard_EXPORT Standard_Boolean IsDone() const;
0049   
0050   Standard_EXPORT const TopoDS_Shape& Spine() const;
0051   
0052   Standard_EXPORT const TopoDS_Shape& Profile() const;
0053   
0054   Standard_EXPORT const TopoDS_Shape& FirstShape() const;
0055   
0056   Standard_EXPORT const TopoDS_Shape& LastShape() const;
0057   
0058   Standard_EXPORT const TopoDS_Shape& Shape() const;
0059   
0060   Standard_EXPORT const TopTools_ListOfShape& Shapes (const TopoDS_Shape& S) const;
0061   
0062   Standard_EXPORT void Curves (TColGeom_SequenceOfCurve& SCurves) const;
0063   
0064   Standard_EXPORT Handle(Geom_Curve) BarycCurve() const;
0065 
0066 
0067 
0068 
0069 protected:
0070 
0071 
0072 
0073 
0074 
0075 private:
0076 
0077   
0078   Standard_EXPORT void IntPerf();
0079 
0080 
0081   BRepFill_Evolved myDPrism;
0082   TopoDS_Shape myRes;
0083   TopoDS_Face mySpine;
0084   TopoDS_Wire myProfile;
0085   TopoDS_Edge myProfile1;
0086   TopoDS_Edge myProfile2;
0087   TopoDS_Edge myProfile3;
0088   Standard_Real myHeight;
0089   TopoDS_Shape myFirstShape;
0090   TopoDS_Shape myLastShape;
0091   TColGeom_SequenceOfCurve myCurvs;
0092   TopTools_DataMapOfShapeListOfShape myMap;
0093 
0094 
0095 };
0096 
0097 
0098 
0099 
0100 
0101 
0102 
0103 #endif // _LocOpe_DPrism_HeaderFile