1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
// File generated by CPPExt (Value)
//
// Copyright (C) 1991 - 2000 by
// Matra Datavision SA. All rights reserved.
//
// Copyright (C) 2001 - 2004 by
// Open CASCADE SA. All rights reserved.
//
// This file is part of the Open CASCADE Technology software.
//
// This software may be distributed and/or modified under the terms and
// conditions of the Open CASCADE Public License as defined by Open CASCADE SA
// and appearing in the file LICENSE included in the packaging of this file.
//
// This software is distributed on an "AS IS" basis, without warranty of any
// kind, and Open CASCADE SA 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 rights and limitations under the
// License.
#ifndef _BRepAlgoAPI_BooleanOperation_HeaderFile
#define _BRepAlgoAPI_BooleanOperation_HeaderFile
#ifndef _TopoDS_Shape_HeaderFile
#include <TopoDS_Shape.hxx>
#endif
#ifndef _Standard_Boolean_HeaderFile
#include <Standard_Boolean.hxx>
#endif
#ifndef _BOP_Operation_HeaderFile
#include <BOP_Operation.hxx>
#endif
#ifndef _Standard_Integer_HeaderFile
#include <Standard_Integer.hxx>
#endif
#ifndef _BOPTools_PDSFiller_HeaderFile
#include <BOPTools_PDSFiller.hxx>
#endif
#ifndef _BOP_PBuilder_HeaderFile
#include <BOP_PBuilder.hxx>
#endif
#ifndef _Handle_BOP_HistoryCollector_HeaderFile
#include <Handle_BOP_HistoryCollector.hxx>
#endif
#ifndef _BRepBuilderAPI_MakeShape_HeaderFile
#include <BRepBuilderAPI_MakeShape.hxx>
#endif
class BOP_HistoryCollector;
class TopoDS_Shape;
class BOPTools_DSFiller;
class TopTools_ListOfShape;
#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_Macro_HeaderFile
#include <Standard_Macro.hxx>
#endif
//! The abstract class BooleanOperation is the root <br>
//! class of Boolean Operations (see Overview). <br>
//! Boolean Operations algorithm is divided onto two parts. <br>
//! - The first one is computing interference between arguments. <br>
//! - The second one is building the result of operation. <br>
//! The BooleanOperation class provides execution of both parts <br>
//! of the Boolean Operations algorithm. The second part <br>
//! (building the result) depends on given type of the Boolean <br>
//! Operation (see Constructor). <br>
class BRepAlgoAPI_BooleanOperation : public BRepBuilderAPI_MakeShape {
public:
void* operator new(size_t,void* anAddress)
{
return anAddress;
}
void* operator new(size_t size)
{
return Standard::Allocate(size);
}
void operator delete(void *anAddress)
{
if (anAddress) Standard::Free((Standard_Address&)anAddress);
}
// Methods PUBLIC
//
//! Sets the type of Boolean operation to perform <br>
//! It can be BOP_SECTION <br>
//! BOP_COMMON <br>
//! BOP_FUSE <br>
//! BOP_CUT <br>
//! BOP_CUT21 <br>
Standard_EXPORT void SetOperation(const BOP_Operation anOp) ;
//! Provides the algorithm of Boolean Operations <br>
//! - Filling interference Data Structure (if it is necessary) <br>
//! - Building the result of the operation. <br>
Standard_EXPORT virtual void Build() ;
//! Returns the first shape involved in this Boolean operation. <br>
Standard_EXPORT const TopoDS_Shape& Shape1() const;
//! Returns the second shape involved in this Boolean operation. <br>
Standard_EXPORT const TopoDS_Shape& Shape2() const;
//! Returns the type of Boolean Operation that has been performed. <br>
Standard_EXPORT BOP_Operation Operation() const;
Standard_EXPORT Standard_Boolean BuilderCanWork() const;
//! Returns the error status of operation. <br>
//! 0 - Ok <br>
//! 1 - The Object is created but Nothing is Done <br>
//! 2 - Null source shapes is not allowed <br>
//! 3 - Check types of the arguments <br>
//! 4 - Can not allocate memory for the DSFiller <br>
//! 5 - The Builder can not work with such types of arguments <br>
//! 6 - Unknown operation is not allowed <br>
//! 7 - Can not allocate memory for the Builder <br>
//! > 100 - See the Builder's ErrorStatus <br>
Standard_EXPORT Standard_Integer ErrorStatus() const;
//! Returns the list of shapes modified from the shape <S>. <br>
Standard_EXPORT virtual const TopTools_ListOfShape& Modified(const TopoDS_Shape& aS) ;
//! Returns true if the shape S has been deleted. The <br>
//! result shape of the operation does not contain the shape S. <br>
Standard_EXPORT virtual Standard_Boolean IsDeleted(const TopoDS_Shape& aS) ;
//! Returns the list of shapes modified from the shape <S>. <br>
//! For use in BRepNaming. <br>
Standard_EXPORT virtual const TopTools_ListOfShape& Modified2(const TopoDS_Shape& aS) ;
//! Returns the list of shapes generated from the shape <S>. <br>
//! For use in BRepNaming. <br>
Standard_EXPORT virtual const TopTools_ListOfShape& Generated(const TopoDS_Shape& S) ;
//! Returns true if there is at least one modified shape. <br>
//! For use in BRepNaming. <br>
Standard_EXPORT virtual Standard_Boolean HasModified() const;
//! Returns true if there is at least one generated shape. <br>
//! For use in BRepNaming. <br>
Standard_EXPORT virtual Standard_Boolean HasGenerated() const;
//! Returns true if there is at least one deleted shape. <br>
//! For use in BRepNaming. <br>
Standard_EXPORT virtual Standard_Boolean HasDeleted() const;
Standard_EXPORT void Destroy() ;
Standard_EXPORT virtual ~BRepAlgoAPI_BooleanOperation(){Destroy();}
//! Returns a list of section edges. <br>
//! The edges represent the result of intersection between arguments of <br>
//! Boolean Operation. They are computed during operation execution. <br>
Standard_EXPORT const TopTools_ListOfShape& SectionEdges() const;
protected:
// Methods PROTECTED
//
//! Prepares the operations for S1 and S2. <br>
Standard_EXPORT BRepAlgoAPI_BooleanOperation(const TopoDS_Shape& S1,const TopoDS_Shape& S2,const BOP_Operation anOperation);
//! Prepares the operations for S1 and S2. <br>
Standard_EXPORT BRepAlgoAPI_BooleanOperation(const TopoDS_Shape& S1,const TopoDS_Shape& S2,const BOPTools_DSFiller& aDSF,const BOP_Operation anOperation);
Standard_EXPORT Standard_Boolean PrepareFiller() ;
// Fields PROTECTED
//
TopoDS_Shape myS1;
TopoDS_Shape myS2;
Standard_Boolean myBuilderCanWork;
BOP_Operation myOperation;
Standard_Integer myErrorStatus;
BOPTools_PDSFiller myDSFiller;
BOP_PBuilder myBuilder;
Handle_BOP_HistoryCollector myHistory;
private:
// Methods PRIVATE
//
// Fields PRIVATE
//
Standard_Integer myEntryType;
};
// other Inline functions and methods (like "C++: function call" methods)
//
#endif
|