Open CASCADE Technology Reference Manual 8.0.0
Loading...
Searching...
No Matches
Public Member Functions | Protected Member Functions | Protected Attributes
BOPAlgo_BuilderFace Class Reference

The algorithm to build new faces from the given faces and set of edges lying on this face. More...

#include <BOPAlgo_BuilderFace.hxx>

Inheritance diagram for BOPAlgo_BuilderFace:
Inheritance graph
[legend]

Public Member Functions

 BOPAlgo_BuilderFace ()
 
 ~BOPAlgo_BuilderFace () override
 
 BOPAlgo_BuilderFace (const occ::handle< NCollection_BaseAllocator > &theAllocator)
 
void SetFace (const TopoDS_Face &theFace)
 Sets the face generatix.
 
const TopoDS_FaceFace () const
 Returns the face generatix.
 
void Perform (const Message_ProgressRange &theRange=Message_ProgressRange()) override
 Performs the algorithm.
 
TopAbs_Orientation Orientation () const
 
- Public Member Functions inherited from BOPAlgo_BuilderArea
void SetContext (const occ::handle< IntTools_Context > &theContext)
 Sets the context for the algorithms.
 
const NCollection_List< TopoDS_Shape > & Shapes () const
 Returns the input shapes.
 
void SetShapes (const NCollection_List< TopoDS_Shape > &theLS)
 Sets the shapes for building areas.
 
const NCollection_List< TopoDS_Shape > & Loops () const
 Returns the found loops.
 
const NCollection_List< TopoDS_Shape > & Areas () const
 Returns the found areas.
 
void SetAvoidInternalShapes (const bool theAvoidInternal)
 Defines the preventing of addition of internal parts into result. The default value is FALSE, i.e. the internal parts are added into result.
 
bool IsAvoidInternalShapes () const
 Returns the AvoidInternalShapes flag.
 
- Public Member Functions inherited from BOPAlgo_Options
 BOPAlgo_Options ()
 Empty constructor.
 
 BOPAlgo_Options (const occ::handle< NCollection_BaseAllocator > &theAllocator)
 Constructor with allocator.
 
virtual ~BOPAlgo_Options ()
 Destructor.
 
const occ::handle< NCollection_BaseAllocator > & Allocator () const
 Returns allocator.
 
virtual void Clear ()
 Clears all warnings and errors, and any data cached by the algorithm. User defined options are not cleared.
 
void AddError (const occ::handle< Message_Alert > &theAlert)
 Adds the alert as error (fail)
 
void AddWarning (const occ::handle< Message_Alert > &theAlert)
 Adds the alert as warning.
 
bool HasErrors () const
 Returns true if algorithm has failed.
 
bool HasError (const occ::handle< Standard_Type > &theType) const
 Returns true if algorithm has generated error of specified type.
 
bool HasWarnings () const
 Returns true if algorithm has generated some warning alerts.
 
bool HasWarning (const occ::handle< Standard_Type > &theType) const
 Returns true if algorithm has generated warning of specified type.
 
const occ::handle< Message_Report > & GetReport () const
 Returns report collecting all errors and warnings.
 
void DumpErrors (Standard_OStream &theOS) const
 Dumps the error status into the given stream.
 
void DumpWarnings (Standard_OStream &theOS) const
 Dumps the warning statuses into the given stream.
 
void ClearWarnings ()
 Clears the warnings of the algorithm.
 
void SetFuzzyValue (const double theFuzz)
 Sets the additional tolerance.
 
double FuzzyValue () const
 Returns the additional tolerance.
 
void SetUseOBB (const bool theUseOBB)
 Enables/Disables the usage of OBB.
 
bool UseOBB () const
 Returns the flag defining usage of OBB.
 
void SetRunParallel (const bool theFlag)
 Set the flag of parallel processing if <theFlag> is true the parallel processing is switched on if <theFlag> is false the parallel processing is switched off.
 
bool RunParallel () const
 Returns the flag of parallel processing.
 

Protected Member Functions

void PerformShapesToAvoid (const Message_ProgressRange &theRange) override
 Collect the edges that a) are internal b) are the same and have different orientation.
 
void PerformLoops (const Message_ProgressRange &theRange) override
 Build draft wires a)myLoops - draft wires that consist of boundary edges b)myLoopsInternal - draft wires that contains inner edges.
 
void PerformAreas (const Message_ProgressRange &theRange) override
 Build draft faces that contains boundary edges.
 
void PerformInternalShapes (const Message_ProgressRange &theRange) override
 Build finalized faces with internals.
 
void CheckData () override
 Checks input data.
 
- Protected Member Functions inherited from BOPAlgo_BuilderArea
 BOPAlgo_BuilderArea ()
 
 ~BOPAlgo_BuilderArea () override
 
 BOPAlgo_BuilderArea (const occ::handle< NCollection_BaseAllocator > &theAllocator)
 
- Protected Member Functions inherited from BOPAlgo_Algo
 BOPAlgo_Algo ()
 Default constructor.
 
 ~BOPAlgo_Algo () override
 
 BOPAlgo_Algo (const occ::handle< NCollection_BaseAllocator > &theAllocator)
 
virtual void CheckResult ()
 Checks the obtained result.
 
void analyzeProgress (const double theWhole, BOPAlgo_PISteps &theSteps) const
 Fills the values for constant operations - the operations having constant relative running time.
 
virtual void fillPIConstants (const double theWhole, BOPAlgo_PISteps &theSteps) const
 Fills the values for constant operations - the operations having constant relative running time.
 
virtual void fillPISteps (BOPAlgo_PISteps &theSteps) const
 Fills the values for the operations dependent on the inputs. Filled values may not be normalized to represent percentage of total running time. The values should just correlate to each other. E.g. if progress depends on the number of input shapes, the values may look like this: step1 = number_of_input_vertices; step2 = 2 * number_of_input_edges; step3 = 10 * number_of_input_faces. Normalization of these values will be done automatically in analyzeProgress() method.
 
- Protected Member Functions inherited from BOPAlgo_Options
bool UserBreak (const Message_ProgressScope &thePS)
 Adds error to the report if the break signal was caught. Returns true in this case, false otherwise.
 

Protected Attributes

TopoDS_Face myFace
 
TopAbs_Orientation myOrientation
 
- Protected Attributes inherited from BOPAlgo_BuilderArea
occ::handle< IntTools_ContextmyContext
 
NCollection_List< TopoDS_ShapemyShapes
 
NCollection_List< TopoDS_ShapemyLoops
 
NCollection_List< TopoDS_ShapemyLoopsInternal
 
NCollection_List< TopoDS_ShapemyAreas
 
NCollection_IndexedMap< TopoDS_ShapemyShapesToAvoid
 
bool myAvoidInternalShapes
 
- Protected Attributes inherited from BOPAlgo_Options
occ::handle< NCollection_BaseAllocatormyAllocator
 Enables/Disables the usage of OBB.
 
occ::handle< Message_ReportmyReport
 Enables/Disables the usage of OBB.
 
bool myRunParallel
 Enables/Disables the usage of OBB.
 
double myFuzzyValue
 Enables/Disables the usage of OBB.
 
bool myUseOBB
 Enables/Disables the usage of OBB.
 

Additional Inherited Members

- Static Public Member Functions inherited from BOPAlgo_Options
static bool GetParallelMode ()
 Gets the global parallel mode.
 
static void SetParallelMode (const bool theNewMode)
 Sets the global parallel mode.
 

Detailed Description

The algorithm to build new faces from the given faces and set of edges lying on this face.

The algorithm returns the following Error statuses:

Constructor & Destructor Documentation

◆ BOPAlgo_BuilderFace() [1/2]

BOPAlgo_BuilderFace::BOPAlgo_BuilderFace ( )

◆ ~BOPAlgo_BuilderFace()

BOPAlgo_BuilderFace::~BOPAlgo_BuilderFace ( )
override

◆ BOPAlgo_BuilderFace() [2/2]

BOPAlgo_BuilderFace::BOPAlgo_BuilderFace ( const occ::handle< NCollection_BaseAllocator > & theAllocator)

Member Function Documentation

◆ CheckData()

void BOPAlgo_BuilderFace::CheckData ( )
overrideprotectedvirtual

Checks input data.

Reimplemented from BOPAlgo_Algo.

◆ Face()

const TopoDS_Face & BOPAlgo_BuilderFace::Face ( ) const

Returns the face generatix.

◆ Orientation()

TopAbs_Orientation BOPAlgo_BuilderFace::Orientation ( ) const

◆ Perform()

void BOPAlgo_BuilderFace::Perform ( const Message_ProgressRange & theRange = Message_ProgressRange())
overridevirtual

Performs the algorithm.

Implements BOPAlgo_Algo.

◆ PerformAreas()

void BOPAlgo_BuilderFace::PerformAreas ( const Message_ProgressRange & theRange)
overrideprotectedvirtual

Build draft faces that contains boundary edges.

Implements BOPAlgo_BuilderArea.

◆ PerformInternalShapes()

void BOPAlgo_BuilderFace::PerformInternalShapes ( const Message_ProgressRange & theRange)
overrideprotectedvirtual

Build finalized faces with internals.

Implements BOPAlgo_BuilderArea.

◆ PerformLoops()

void BOPAlgo_BuilderFace::PerformLoops ( const Message_ProgressRange & theRange)
overrideprotectedvirtual

Build draft wires a)myLoops - draft wires that consist of boundary edges b)myLoopsInternal - draft wires that contains inner edges.

Implements BOPAlgo_BuilderArea.

◆ PerformShapesToAvoid()

void BOPAlgo_BuilderFace::PerformShapesToAvoid ( const Message_ProgressRange & theRange)
overrideprotectedvirtual

Collect the edges that a) are internal b) are the same and have different orientation.

Implements BOPAlgo_BuilderArea.

◆ SetFace()

void BOPAlgo_BuilderFace::SetFace ( const TopoDS_Face & theFace)

Sets the face generatix.

Field Documentation

◆ myFace

TopoDS_Face BOPAlgo_BuilderFace::myFace
protected

◆ myOrientation

TopAbs_Orientation BOPAlgo_BuilderFace::myOrientation
protected

The documentation for this class was generated from the following file: