mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
Added progress indicator to BRepMesh_IncrementalMesh [0025113 for OCCT 7.2.0]
Additional commit for binary compatibility with OCCT products
This commit is contained in:
@@ -130,7 +130,7 @@ public:
|
|||||||
//! Triangulate a face previously recorded for
|
//! Triangulate a face previously recorded for
|
||||||
//! processing by call to Add(). Can be executed in
|
//! processing by call to Add(). Can be executed in
|
||||||
//! parallel threads.
|
//! parallel threads.
|
||||||
Standard_EXPORT void Process(const TopoDS_Face& theFace, Message_ProgressSentry& theProgrEntry) const;
|
Standard_EXPORT void Process(const TopoDS_Face& theFace, Message_ProgressSentry& theProgrEntry = NULL) const;
|
||||||
|
|
||||||
void operator () (const BRepMesh_FaceSentry& aFaceSentry) const
|
void operator () (const BRepMesh_FaceSentry& aFaceSentry) const
|
||||||
{
|
{
|
||||||
|
@@ -67,13 +67,13 @@ public:
|
|||||||
DEFINE_STANDARD_ALLOC
|
DEFINE_STANDARD_ALLOC
|
||||||
|
|
||||||
|
|
||||||
Standard_EXPORT Message_ProgressSentry(const Handle(Message_ProgressIndicator)& PI, const Standard_CString name, const Standard_Real min, const Standard_Real max, const Standard_Real step, const Standard_Boolean isInf = Standard_False, const Standard_Real newScopeSpan = 0.0);
|
Standard_EXPORT Message_ProgressSentry(const Handle(Message_ProgressIndicator)& progress, const Standard_CString name, const Standard_Real min, const Standard_Real max, const Standard_Real step, const Standard_Boolean isInf = Standard_False, const Standard_Real newScopeSpan = 0.0);
|
||||||
|
|
||||||
//! Creates an instance of ProgressSentry attaching it to
|
//! Creates an instance of ProgressSentry attaching it to
|
||||||
//! the specified ProgressIndicator, selects parameters of
|
//! the specified ProgressIndicator, selects parameters of
|
||||||
//! the current scale, and opens a new scope with specified
|
//! the current scale, and opens a new scope with specified
|
||||||
//! span (equal to step by default)
|
//! span (equal to step by default)
|
||||||
Standard_EXPORT Message_ProgressSentry(const Handle(Message_ProgressIndicator)& PI, const Handle(TCollection_HAsciiString)& name, const Standard_Real min, const Standard_Real max, const Standard_Real step, const Standard_Boolean isInf = Standard_False, const Standard_Real newScopeSpan = 0.0);
|
Standard_EXPORT Message_ProgressSentry(const Handle(Message_ProgressIndicator)& progress, const Handle(TCollection_HAsciiString)& name, const Standard_Real min, const Standard_Real max, const Standard_Real step, const Standard_Boolean isInf = Standard_False, const Standard_Real newScopeSpan = 0.0);
|
||||||
|
|
||||||
//! Moves progress indicator to the end of the current scale
|
//! Moves progress indicator to the end of the current scale
|
||||||
//! and relieves sentry from its duty. Methods other than Show()
|
//! and relieves sentry from its duty. Methods other than Show()
|
||||||
|
Reference in New Issue
Block a user