mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0024157: Parallelization of assembly part of BO
New metod was implemented to class BOPAlgo_Builder - method: void BOPAlgo_Builder::SetRunParallel(const Standard_Boolean theFlag) The method sets 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 - method: Standard_Boolean BOPAlgo_Builder::RunParallel()const The method returns the flag of parallel processing Class BOPTest was changed - static function: Standard_Integer bbuild(Draw_Interpretor& di, Standard_Integer n, const char** a) The optional parameters [ -s -t ] have been added to the command line of the command 'bbuild': bbuild r [-s -t] -s : builds the result using serial procesing -t : show the wall time
This commit is contained in:
parent
426dc099e9
commit
796a784d36
@ -106,15 +106,24 @@ is
|
|||||||
---Purpose: Returns true if the shape theS has been deleted.
|
---Purpose: Returns true if the shape theS has been deleted.
|
||||||
returns Boolean from Standard
|
returns Boolean from Standard
|
||||||
is redefined;
|
is redefined;
|
||||||
|
|
||||||
|
SetRunParallel(me:out;
|
||||||
|
theFlag:Boolean from Standard);
|
||||||
|
---Purpose: 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
|
||||||
|
--
|
||||||
|
RunParallel(me)
|
||||||
|
returns Boolean from Standard;
|
||||||
|
---Purpose: Returns the flag of parallel processing
|
||||||
--
|
--
|
||||||
-- Debug
|
-- Debug
|
||||||
--
|
--
|
||||||
Images(me)
|
Images(me)
|
||||||
returns DataMapOfShapeListOfShape from BOPCol;
|
returns DataMapOfShapeListOfShape from BOPCol;
|
||||||
---C++: return const &
|
---C++: return const &
|
||||||
|
|
||||||
|
--
|
||||||
--
|
--
|
||||||
-- protected methods
|
-- protected methods
|
||||||
--
|
--
|
||||||
@ -241,6 +250,8 @@ fields
|
|||||||
--
|
--
|
||||||
mySplits : DataMapOfShapeListOfShape from BOPCol is protected;
|
mySplits : DataMapOfShapeListOfShape from BOPCol is protected;
|
||||||
myOrigins : DataMapOfShapeShape from BOPCol is protected;
|
myOrigins : DataMapOfShapeShape from BOPCol is protected;
|
||||||
|
--
|
||||||
|
myRunParallel : Boolean from Standard is protected;
|
||||||
|
--
|
||||||
end Builder;
|
end Builder;
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
//function :
|
//function :
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
BOPAlgo_Builder::BOPAlgo_Builder()
|
BOPAlgo_Builder::BOPAlgo_Builder()
|
||||||
:
|
:
|
||||||
BOPAlgo_BuilderShape(),
|
BOPAlgo_BuilderShape(),
|
||||||
myArguments(myAllocator),
|
myArguments(myAllocator),
|
||||||
@ -46,14 +46,16 @@
|
|||||||
myImages(100, myAllocator),
|
myImages(100, myAllocator),
|
||||||
myShapesSD(100, myAllocator),
|
myShapesSD(100, myAllocator),
|
||||||
mySplits(100, myAllocator),
|
mySplits(100, myAllocator),
|
||||||
myOrigins(100, myAllocator)
|
myOrigins(100, myAllocator),
|
||||||
|
myRunParallel(Standard_False)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function :
|
//function :
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
BOPAlgo_Builder::BOPAlgo_Builder(const Handle(NCollection_BaseAllocator)& theAllocator)
|
BOPAlgo_Builder::BOPAlgo_Builder
|
||||||
|
(const Handle(NCollection_BaseAllocator)& theAllocator)
|
||||||
:
|
:
|
||||||
BOPAlgo_BuilderShape(theAllocator),
|
BOPAlgo_BuilderShape(theAllocator),
|
||||||
myArguments(myAllocator),
|
myArguments(myAllocator),
|
||||||
@ -65,14 +67,15 @@
|
|||||||
myImages(100, myAllocator),
|
myImages(100, myAllocator),
|
||||||
myShapesSD(100, myAllocator),
|
myShapesSD(100, myAllocator),
|
||||||
mySplits(100, myAllocator),
|
mySplits(100, myAllocator),
|
||||||
myOrigins(100, myAllocator)
|
myOrigins(100, myAllocator),
|
||||||
|
myRunParallel(Standard_False)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : ~
|
//function : ~
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
BOPAlgo_Builder::~BOPAlgo_Builder()
|
BOPAlgo_Builder::~BOPAlgo_Builder()
|
||||||
{
|
{
|
||||||
if (myEntryPoint==1) {
|
if (myEntryPoint==1) {
|
||||||
if (myPaveFiller) {
|
if (myPaveFiller) {
|
||||||
@ -85,7 +88,7 @@
|
|||||||
//function : Clear
|
//function : Clear
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void BOPAlgo_Builder::Clear()
|
void BOPAlgo_Builder::Clear()
|
||||||
{
|
{
|
||||||
myArguments.Clear();
|
myArguments.Clear();
|
||||||
myMapFence.Clear();
|
myMapFence.Clear();
|
||||||
@ -95,10 +98,26 @@
|
|||||||
myOrigins.Clear();
|
myOrigins.Clear();
|
||||||
}
|
}
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
//function : SetRunParallel
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
void BOPAlgo_Builder::SetRunParallel(const Standard_Boolean theFlag)
|
||||||
|
{
|
||||||
|
myRunParallel=theFlag;
|
||||||
|
}
|
||||||
|
//=======================================================================
|
||||||
|
//function : RunParallel
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
Standard_Boolean BOPAlgo_Builder::RunParallel()const
|
||||||
|
{
|
||||||
|
return myRunParallel;
|
||||||
|
}
|
||||||
|
//=======================================================================
|
||||||
//function : AddArgument
|
//function : AddArgument
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void BOPAlgo_Builder::AddArgument(const TopoDS_Shape& theShape)
|
void BOPAlgo_Builder::AddArgument(const TopoDS_Shape& theShape)
|
||||||
{
|
{
|
||||||
if (myMapFence.Add(theShape)) {
|
if (myMapFence.Add(theShape)) {
|
||||||
myArguments.Append(theShape);
|
myArguments.Append(theShape);
|
||||||
@ -108,7 +127,7 @@
|
|||||||
//function : Arguments
|
//function : Arguments
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
const BOPCol_ListOfShape& BOPAlgo_Builder::Arguments()const
|
const BOPCol_ListOfShape& BOPAlgo_Builder::Arguments()const
|
||||||
{
|
{
|
||||||
return myArguments;
|
return myArguments;
|
||||||
}
|
}
|
||||||
@ -116,7 +135,7 @@
|
|||||||
//function : Images
|
//function : Images
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
const BOPCol_DataMapOfShapeListOfShape& BOPAlgo_Builder::Images()const
|
const BOPCol_DataMapOfShapeListOfShape& BOPAlgo_Builder::Images()const
|
||||||
{
|
{
|
||||||
return myImages;
|
return myImages;
|
||||||
}
|
}
|
||||||
@ -124,7 +143,7 @@
|
|||||||
//function : Origins
|
//function : Origins
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
const BOPCol_DataMapOfShapeShape& BOPAlgo_Builder::Origins()const
|
const BOPCol_DataMapOfShapeShape& BOPAlgo_Builder::Origins()const
|
||||||
{
|
{
|
||||||
return myOrigins;
|
return myOrigins;
|
||||||
}
|
}
|
||||||
@ -133,7 +152,7 @@
|
|||||||
//function : ShapesSd
|
//function : ShapesSd
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
const BOPCol_DataMapOfShapeShape& BOPAlgo_Builder::ShapesSD()const
|
const BOPCol_DataMapOfShapeShape& BOPAlgo_Builder::ShapesSD()const
|
||||||
{
|
{
|
||||||
return myShapesSD;
|
return myShapesSD;
|
||||||
}
|
}
|
||||||
@ -141,7 +160,7 @@
|
|||||||
//function : Splits
|
//function : Splits
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
const BOPCol_DataMapOfShapeListOfShape& BOPAlgo_Builder::Splits()const
|
const BOPCol_DataMapOfShapeListOfShape& BOPAlgo_Builder::Splits()const
|
||||||
{
|
{
|
||||||
return mySplits;
|
return mySplits;
|
||||||
}
|
}
|
||||||
@ -149,7 +168,7 @@
|
|||||||
//function : PPaveFiller
|
//function : PPaveFiller
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
BOPAlgo_PPaveFiller BOPAlgo_Builder::PPaveFiller()
|
BOPAlgo_PPaveFiller BOPAlgo_Builder::PPaveFiller()
|
||||||
{
|
{
|
||||||
return myPaveFiller;
|
return myPaveFiller;
|
||||||
}
|
}
|
||||||
@ -157,7 +176,7 @@
|
|||||||
//function : PDS
|
//function : PDS
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
BOPDS_PDS BOPAlgo_Builder::PDS()
|
BOPDS_PDS BOPAlgo_Builder::PDS()
|
||||||
{
|
{
|
||||||
return myDS;
|
return myDS;
|
||||||
}
|
}
|
||||||
@ -165,7 +184,7 @@
|
|||||||
// function: CheckData
|
// function: CheckData
|
||||||
// purpose:
|
// purpose:
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void BOPAlgo_Builder::CheckData()
|
void BOPAlgo_Builder::CheckData()
|
||||||
{
|
{
|
||||||
Standard_Integer aNb;
|
Standard_Integer aNb;
|
||||||
//
|
//
|
||||||
@ -193,7 +212,7 @@
|
|||||||
//function : Prepare
|
//function : Prepare
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void BOPAlgo_Builder::Prepare()
|
void BOPAlgo_Builder::Prepare()
|
||||||
{
|
{
|
||||||
myErrorStatus=0;
|
myErrorStatus=0;
|
||||||
//
|
//
|
||||||
@ -209,7 +228,7 @@
|
|||||||
//function : Perform
|
//function : Perform
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void BOPAlgo_Builder::Perform()
|
void BOPAlgo_Builder::Perform()
|
||||||
{
|
{
|
||||||
myErrorStatus=0;
|
myErrorStatus=0;
|
||||||
//
|
//
|
||||||
@ -235,7 +254,7 @@
|
|||||||
//function : PerformWithFiller
|
//function : PerformWithFiller
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void BOPAlgo_Builder::PerformWithFiller(const BOPAlgo_PaveFiller& theFiller)
|
void BOPAlgo_Builder::PerformWithFiller(const BOPAlgo_PaveFiller& theFiller)
|
||||||
{
|
{
|
||||||
myEntryPoint=0;
|
myEntryPoint=0;
|
||||||
PerformInternal(theFiller);
|
PerformInternal(theFiller);
|
||||||
@ -244,7 +263,7 @@
|
|||||||
//function : PerformInternal
|
//function : PerformInternal
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void BOPAlgo_Builder::PerformInternal(const BOPAlgo_PaveFiller& theFiller)
|
void BOPAlgo_Builder::PerformInternal(const BOPAlgo_PaveFiller& theFiller)
|
||||||
{
|
{
|
||||||
myErrorStatus=0;
|
myErrorStatus=0;
|
||||||
//
|
//
|
||||||
@ -366,7 +385,7 @@
|
|||||||
//function : PostTreat
|
//function : PostTreat
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void BOPAlgo_Builder::PostTreat()
|
void BOPAlgo_Builder::PostTreat()
|
||||||
{
|
{
|
||||||
//BRepLib::SameParameter(myShape, 1.e-7, Standard_True);
|
//BRepLib::SameParameter(myShape, 1.e-7, Standard_True);
|
||||||
BOPTools_AlgoTools::CorrectTolerances(myShape, 0.05);
|
BOPTools_AlgoTools::CorrectTolerances(myShape, 0.05);
|
||||||
|
@ -263,8 +263,7 @@ void BOPAlgo_Builder::BuildSplitFaces()
|
|||||||
aNbBF=aVBF.Extent();
|
aNbBF=aVBF.Extent();
|
||||||
//
|
//
|
||||||
//===================================================
|
//===================================================
|
||||||
bRunParallel=Standard_True;
|
BOPAlgo_BuilderFaceCnt::Perform(myRunParallel, aVBF);
|
||||||
BOPAlgo_BuilderFaceCnt::Perform(bRunParallel, aVBF);
|
|
||||||
//===================================================
|
//===================================================
|
||||||
//
|
//
|
||||||
for (k=0; k<(Standard_Integer)aNbBF; ++k) {
|
for (k=0; k<(Standard_Integer)aNbBF; ++k) {
|
||||||
@ -422,7 +421,7 @@ void BOPAlgo_Builder::FillSameDomainFaces()
|
|||||||
//
|
//
|
||||||
aIDMSS.Clear();
|
aIDMSS.Clear();
|
||||||
//
|
//
|
||||||
Standard_Boolean bRunParallel, bFlagSD;
|
Standard_Boolean bFlagSD;
|
||||||
Standard_Integer aNbVPSB, aNbVVS, aNbF, aNbF1;
|
Standard_Integer aNbVPSB, aNbVVS, aNbF, aNbF1;
|
||||||
BOPAlgo_VectorOfPairOfShapeBoolean aVPSB;
|
BOPAlgo_VectorOfPairOfShapeBoolean aVPSB;
|
||||||
//
|
//
|
||||||
@ -446,8 +445,7 @@ void BOPAlgo_Builder::FillSameDomainFaces()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
//====================================================
|
//====================================================
|
||||||
bRunParallel=Standard_True;
|
BOPAlgo_BuilderSDFaceCnt::Perform(myRunParallel, aVPSB);
|
||||||
BOPAlgo_BuilderSDFaceCnt::Perform(bRunParallel, aVPSB);
|
|
||||||
//====================================================
|
//====================================================
|
||||||
aAllocator=new NCollection_IncAllocator();
|
aAllocator=new NCollection_IncAllocator();
|
||||||
BOPCol_IndexedDataMapOfShapeListOfShape aDMSLS(100, aAllocator);
|
BOPCol_IndexedDataMapOfShapeListOfShape aDMSLS(100, aAllocator);
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include <BOPTest.ixx>
|
#include <BOPTest.ixx>
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#include <NCollection_IncAllocator.hxx>
|
#include <NCollection_IncAllocator.hxx>
|
||||||
|
|
||||||
@ -39,6 +40,73 @@
|
|||||||
#include <BOPTest_Objects.hxx>
|
#include <BOPTest_Objects.hxx>
|
||||||
|
|
||||||
//
|
//
|
||||||
|
#ifdef HAVE_TBB
|
||||||
|
#include <BOPCol_TBB.hxx>
|
||||||
|
//=======================================================================
|
||||||
|
//class : BOPTime_Chronometer
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
class BOPTime_Chronometer {
|
||||||
|
public:
|
||||||
|
BOPTime_Chronometer() {
|
||||||
|
}
|
||||||
|
//
|
||||||
|
~BOPTime_Chronometer() {
|
||||||
|
}
|
||||||
|
//
|
||||||
|
void Start() {
|
||||||
|
myT0 = tick_count::now();
|
||||||
|
}
|
||||||
|
//
|
||||||
|
void Stop() {
|
||||||
|
myTime=(tick_count::now() - myT0).seconds();
|
||||||
|
}
|
||||||
|
//
|
||||||
|
double Time() const{
|
||||||
|
return myTime;
|
||||||
|
};
|
||||||
|
//
|
||||||
|
protected:
|
||||||
|
tick_count myT0;
|
||||||
|
double myTime;
|
||||||
|
};
|
||||||
|
////////////////////////////////////////////////////////////////////////
|
||||||
|
#else
|
||||||
|
#include <OSD_Chronometer.hxx>
|
||||||
|
//=======================================================================
|
||||||
|
//class : BOPTime_Chronometer
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
class BOPTime_Chronometer {
|
||||||
|
public:
|
||||||
|
BOPTime_Chronometer() {
|
||||||
|
}
|
||||||
|
//
|
||||||
|
~BOPTime_Chronometer() {
|
||||||
|
}
|
||||||
|
//
|
||||||
|
void Start() {
|
||||||
|
myChronometer.Reset();
|
||||||
|
myChronometer.Start();
|
||||||
|
}
|
||||||
|
//
|
||||||
|
void Stop() {
|
||||||
|
myChronometer.Stop();
|
||||||
|
myChronometer.Show(myTime);
|
||||||
|
}
|
||||||
|
//
|
||||||
|
double Time() const{
|
||||||
|
return myTime;
|
||||||
|
};
|
||||||
|
//
|
||||||
|
protected:
|
||||||
|
OSD_Chronometer myChronometer;
|
||||||
|
double myTime;
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static Standard_Integer bfillds (Draw_Interpretor&, Standard_Integer, const char**);
|
static Standard_Integer bfillds (Draw_Interpretor&, Standard_Integer, const char**);
|
||||||
static Standard_Integer bbuild (Draw_Interpretor&, Standard_Integer, const char**);
|
static Standard_Integer bbuild (Draw_Interpretor&, Standard_Integer, const char**);
|
||||||
static Standard_Integer bbop (Draw_Interpretor&, Standard_Integer, const char**);
|
static Standard_Integer bbop (Draw_Interpretor&, Standard_Integer, const char**);
|
||||||
@ -56,7 +124,7 @@ static Standard_Integer bclear (Draw_Interpretor&, Standard_Integer, const cha
|
|||||||
const char* g = "Partition commands";
|
const char* g = "Partition commands";
|
||||||
// Commands
|
// Commands
|
||||||
theCommands.Add("bfillds" , "use bfillds" , __FILE__, bfillds , g);
|
theCommands.Add("bfillds" , "use bfillds" , __FILE__, bfillds , g);
|
||||||
theCommands.Add("bbuild" , "use bbuild r" , __FILE__, bbuild, g);
|
theCommands.Add("bbuild" , " use bbuild r [-s -t]" , __FILE__, bbuild, g);
|
||||||
theCommands.Add("bbop" , "use bbop r op" , __FILE__, bbop, g);
|
theCommands.Add("bbop" , "use bbop r op" , __FILE__, bbop, g);
|
||||||
theCommands.Add("bclear" , "use bclear" , __FILE__, bclear, g);
|
theCommands.Add("bclear" , "use bclear" , __FILE__, bclear, g);
|
||||||
}
|
}
|
||||||
@ -127,15 +195,14 @@ Standard_Integer bfillds(Draw_Interpretor& di, Standard_Integer n, const char**
|
|||||||
//
|
//
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : bbuild
|
//function : bbuild
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
Standard_Integer bbuild(Draw_Interpretor& di, Standard_Integer n, const char** a)
|
Standard_Integer bbuild(Draw_Interpretor& di, Standard_Integer n, const char** a)
|
||||||
{
|
{
|
||||||
if (n!=2) {
|
if (n<2) {
|
||||||
di << " Use bbuild r\n";
|
di << " use bbuild r [-s -t]\n";
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
@ -145,9 +212,14 @@ Standard_Integer bbuild(Draw_Interpretor& di, Standard_Integer n, const char** a
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
char buf[32];
|
char buf[128];
|
||||||
Standard_Integer iErr;
|
Standard_Boolean bRunParallel, bShowTime;
|
||||||
|
Standard_Integer i, iErr;
|
||||||
|
|
||||||
|
BOPTime_Chronometer aChrono;
|
||||||
BOPCol_ListIteratorOfListOfShape aIt;
|
BOPCol_ListIteratorOfListOfShape aIt;
|
||||||
|
//
|
||||||
|
|
||||||
//
|
//
|
||||||
BOPAlgo_PaveFiller& aPF=BOPTest_Objects::PaveFiller();
|
BOPAlgo_PaveFiller& aPF=BOPTest_Objects::PaveFiller();
|
||||||
//
|
//
|
||||||
@ -168,7 +240,22 @@ Standard_Integer bbuild(Draw_Interpretor& di, Standard_Integer n, const char** a
|
|||||||
aBuilder.AddArgument(aS);
|
aBuilder.AddArgument(aS);
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
aBuilder.PerformWithFiller(aPF);
|
bShowTime=Standard_False;
|
||||||
|
bRunParallel=Standard_True;
|
||||||
|
for (i=2; i<n; ++i) {
|
||||||
|
if (!strcmp(a[i], "-s")) {
|
||||||
|
bRunParallel=Standard_False;
|
||||||
|
}
|
||||||
|
else if (!strcmp(a[i], "-t")) {
|
||||||
|
bShowTime=Standard_True;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
aBuilder.SetRunParallel(bRunParallel);
|
||||||
|
//
|
||||||
|
//
|
||||||
|
aChrono.Start();
|
||||||
|
//
|
||||||
|
aBuilder.PerformWithFiller(aPF);
|
||||||
iErr=aBuilder.ErrorStatus();
|
iErr=aBuilder.ErrorStatus();
|
||||||
if (iErr) {
|
if (iErr) {
|
||||||
Sprintf(buf, " error: %d\n", iErr);
|
Sprintf(buf, " error: %d\n", iErr);
|
||||||
@ -176,6 +263,16 @@ Standard_Integer bbuild(Draw_Interpretor& di, Standard_Integer n, const char** a
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
|
aChrono.Stop();
|
||||||
|
//
|
||||||
|
if (bShowTime) {
|
||||||
|
Standard_Real aTime;
|
||||||
|
//
|
||||||
|
aTime=aChrono.Time();
|
||||||
|
Sprintf(buf, " Tps: %7.2lf\n", aTime);
|
||||||
|
di << buf;
|
||||||
|
}
|
||||||
|
//
|
||||||
const TopoDS_Shape& aR=aBuilder.Shape();
|
const TopoDS_Shape& aR=aBuilder.Shape();
|
||||||
if (aR.IsNull()) {
|
if (aR.IsNull()) {
|
||||||
di << " null shape\n";
|
di << " null shape\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user