1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0025926: 3D offset in mode "Complete" with Join type "Intersection"

Extension for colliding cases (Limited to work on planar cases only).

Test cases for issue CR25926

Update of test-cases according to the new behavior
This commit is contained in:
emv 2015-10-30 16:27:02 +03:00 committed by bugmaster
parent b40693b0c2
commit 9b7f3f83c0
168 changed files with 4641 additions and 2011 deletions

View File

@ -31,7 +31,7 @@
//purpose : //purpose :
//======================================================================= //=======================================================================
TopoDS_Shape BRepAlgo_Tool::Deboucle3D(const TopoDS_Shape& S, TopoDS_Shape BRepAlgo_Tool::Deboucle3D(const TopoDS_Shape& S,
const TopTools_MapOfShape& Boundary) const TopTools_MapOfShape& Boundary)
{ {
TopoDS_Shape SS; TopoDS_Shape SS;
@ -49,12 +49,19 @@ TopoDS_Shape BRepAlgo_Tool::Deboucle3D(const TopoDS_Shape& S,
Standard_Boolean JeGarde = Standard_True; Standard_Boolean JeGarde = Standard_True;
for ( Standard_Integer i = 1; i <= Map.Extent() && JeGarde; i++) { for ( Standard_Integer i = 1; i <= Map.Extent() && JeGarde; i++) {
if (Map(i).Extent() < 2) { const TopTools_ListOfShape& aLF = Map(i);
const TopoDS_Edge& anEdge = TopoDS::Edge(Map.FindKey(i)); if (aLF.Extent() < 2) {
if (!Boundary.Contains(anEdge) && const TopoDS_Edge& anEdge = TopoDS::Edge(Map.FindKey(i));
!BRep_Tool::Degenerated(anEdge) ) if (anEdge.Orientation() == TopAbs_INTERNAL) {
JeGarde = Standard_False; const TopoDS_Face& aFace = TopoDS::Face(aLF.First());
} if (aFace.Orientation() != TopAbs_INTERNAL) {
continue;
}
}
if (!Boundary.Contains(anEdge) &&
!BRep_Tool::Degenerated(anEdge) )
JeGarde = Standard_False;
}
} }
if ( JeGarde) SS = S; if ( JeGarde) SS = S;
} }

File diff suppressed because it is too large Load Diff

View File

@ -41,31 +41,27 @@ public:
//! Computes the intersections between the edges stored //! Computes the intersections between the edges stored
//! is AsDes as descendants of <F> . Intersections is computed //! is AsDes as descendants of <F> . Intersections is computed
//! between two edges if one of them is bound in NewEdges. //! between two edges if one of them is bound in NewEdges.
Standard_EXPORT static void Compute (const Handle(BRepAlgo_AsDes)& AsDes, const TopoDS_Face& F, const TopTools_IndexedMapOfShape& NewEdges, const Standard_Real Tol); Standard_EXPORT static void Compute (const Handle(BRepAlgo_AsDes)& AsDes,
const TopoDS_Face& F,
const TopTools_IndexedMapOfShape& NewEdges,
const Standard_Real Tol);
Standard_EXPORT static void ConnexIntByInt (const TopoDS_Face& FI, BRepOffset_Offset& OFI, TopTools_DataMapOfShapeShape& MES, const TopTools_DataMapOfShapeShape& Build, const Handle(BRepAlgo_AsDes)& AsDes, const Standard_Real Offset, const Standard_Real Tol); Standard_EXPORT static void ConnexIntByInt (const TopoDS_Face& FI,
BRepOffset_Offset& OFI,
TopTools_DataMapOfShapeShape& MES,
const TopTools_DataMapOfShapeShape& Build,
const Handle(BRepAlgo_AsDes)& AsDes,
const Handle(BRepAlgo_AsDes)& AsDes2d,
const Standard_Real Offset,
const Standard_Real Tol);
protected: protected:
private: private:
}; };
#endif // _BRepOffset_Inter2d_HeaderFile #endif // _BRepOffset_Inter2d_HeaderFile

File diff suppressed because it is too large Load Diff

View File

@ -53,9 +53,9 @@ public:
Standard_EXPORT void ConnexIntByArc (const TopTools_ListOfShape& SetOfFaces, const TopoDS_Shape& ShapeInit, const BRepOffset_Analyse& Analyse, const BRepAlgo_Image& InitOffsetFace); Standard_EXPORT void ConnexIntByArc (const TopTools_ListOfShape& SetOfFaces, const TopoDS_Shape& ShapeInit, const BRepOffset_Analyse& Analyse, const BRepAlgo_Image& InitOffsetFace);
Standard_EXPORT void ConnexIntByInt (const TopoDS_Shape& SI, const BRepOffset_DataMapOfShapeOffset& MapSF, const BRepOffset_Analyse& A, TopTools_DataMapOfShapeShape& MES, TopTools_DataMapOfShapeShape& Build, TopTools_ListOfShape& Failed); Standard_EXPORT void ConnexIntByInt (const TopoDS_Shape& SI, const BRepOffset_DataMapOfShapeOffset& MapSF, const BRepOffset_Analyse& A, TopTools_DataMapOfShapeShape& MES, TopTools_DataMapOfShapeShape& Build, TopTools_ListOfShape& Failed, const Standard_Boolean bIsPlanar = Standard_False);
Standard_EXPORT void ContextIntByInt (const TopTools_IndexedMapOfShape& ContextFaces, const Standard_Boolean ExtentContext, const BRepOffset_DataMapOfShapeOffset& MapSF, const BRepOffset_Analyse& A, TopTools_DataMapOfShapeShape& MES, TopTools_DataMapOfShapeShape& Build, TopTools_ListOfShape& Failed); Standard_EXPORT void ContextIntByInt (const TopTools_IndexedMapOfShape& ContextFaces, const Standard_Boolean ExtentContext, const BRepOffset_DataMapOfShapeOffset& MapSF, const BRepOffset_Analyse& A, TopTools_DataMapOfShapeShape& MES, TopTools_DataMapOfShapeShape& Build, TopTools_ListOfShape& Failed, const Standard_Boolean bIsPlanar = Standard_False);
Standard_EXPORT void ContextIntByArc (const TopTools_IndexedMapOfShape& ContextFaces, const Standard_Boolean ExtentContext, const BRepOffset_Analyse& Analyse, const BRepAlgo_Image& InitOffsetFace, BRepAlgo_Image& InitOffsetEdge); Standard_EXPORT void ContextIntByArc (const TopTools_IndexedMapOfShape& ContextFaces, const Standard_Boolean ExtentContext, const BRepOffset_Analyse& Analyse, const BRepAlgo_Image& InitOffsetFace, BRepAlgo_Image& InitOffsetEdge);

File diff suppressed because it is too large Load Diff

View File

@ -53,9 +53,27 @@ public:
Standard_EXPORT BRepOffset_MakeOffset(); Standard_EXPORT BRepOffset_MakeOffset();
Standard_EXPORT BRepOffset_MakeOffset(const TopoDS_Shape& S, const Standard_Real Offset, const Standard_Real Tol, const BRepOffset_Mode Mode = BRepOffset_Skin, const Standard_Boolean Intersection = Standard_False, const Standard_Boolean SelfInter = Standard_False, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean Thickening = Standard_False); Standard_EXPORT BRepOffset_MakeOffset(const TopoDS_Shape& S,
const Standard_Real Offset,
const Standard_Real Tol,
const BRepOffset_Mode Mode = BRepOffset_Skin,
const Standard_Boolean Intersection = Standard_False,
const Standard_Boolean SelfInter = Standard_False,
const GeomAbs_JoinType Join = GeomAbs_Arc,
const Standard_Boolean Thickening = Standard_False,
const Standard_Boolean RemoveIntEdges = Standard_False,
const Standard_Boolean RemoveInvalidFaces = Standard_False);
Standard_EXPORT void Initialize (const TopoDS_Shape& S, const Standard_Real Offset, const Standard_Real Tol, const BRepOffset_Mode Mode = BRepOffset_Skin, const Standard_Boolean Intersection = Standard_False, const Standard_Boolean SelfInter = Standard_False, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean Thickening = Standard_False); Standard_EXPORT void Initialize (const TopoDS_Shape& S,
const Standard_Real Offset,
const Standard_Real Tol,
const BRepOffset_Mode Mode = BRepOffset_Skin,
const Standard_Boolean Intersection = Standard_False,
const Standard_Boolean SelfInter = Standard_False,
const GeomAbs_JoinType Join = GeomAbs_Arc,
const Standard_Boolean Thickening = Standard_False,
const Standard_Boolean RemoveIntEdges = Standard_False,
const Standard_Boolean RemoveInvalidFaces = Standard_False);
Standard_EXPORT void Clear(); Standard_EXPORT void Clear();
@ -106,20 +124,24 @@ public:
Standard_EXPORT const TopoDS_Shape& GetBadShape() const; Standard_EXPORT const TopoDS_Shape& GetBadShape() const;
protected: protected:
private: private:
Standard_EXPORT void BuildOffsetByArc(); Standard_EXPORT void BuildOffsetByArc();
Standard_EXPORT void BuildOffsetByInter(); Standard_EXPORT void BuildOffsetByInter();
//! Building splits of the offset faces by the section curves
//! between the neighboring faces.
Standard_EXPORT void BuildSplitsOfFaces(const TopTools_ListOfShape& theLF,
const Handle(BRepAlgo_AsDes)& theAsDes,
TopTools_IndexedDataMapOfShapeListOfShape& theOrigins,
BRepAlgo_Image& theImage,
TopTools_ListOfShape& theLFailed,
const Standard_Boolean bLimited);
Standard_EXPORT void SelfInter (TopTools_MapOfShape& Modif); Standard_EXPORT void SelfInter (TopTools_MapOfShape& Modif);
@ -152,6 +174,10 @@ private:
//! Private method used to build walls for thickening the shell //! Private method used to build walls for thickening the shell
Standard_EXPORT void MakeMissingWalls(); Standard_EXPORT void MakeMissingWalls();
//! Removes INTERNAL edges from the result
Standard_EXPORT void RemoveInternalEdges();
Standard_Real myOffset; Standard_Real myOffset;
Standard_Real myTol; Standard_Real myTol;
@ -161,6 +187,8 @@ private:
Standard_Boolean mySelfInter; Standard_Boolean mySelfInter;
GeomAbs_JoinType myJoin; GeomAbs_JoinType myJoin;
Standard_Boolean myThickening; Standard_Boolean myThickening;
Standard_Boolean myRemoveIntEdges;
Standard_Boolean myRemoveInvalidFaces;
TopTools_DataMapOfShapeReal myFaceOffset; TopTools_DataMapOfShapeReal myFaceOffset;
TopTools_IndexedMapOfShape myFaces; TopTools_IndexedMapOfShape myFaces;
BRepOffset_Analyse myAnalyse; BRepOffset_Analyse myAnalyse;
@ -174,15 +202,9 @@ private:
BRepOffset_Error myError; BRepOffset_Error myError;
BRepOffset_MakeLoops myMakeLoops; BRepOffset_MakeLoops myMakeLoops;
Standard_Boolean myIsPerformSewing; // Handle bad walls in thicksolid mode. Standard_Boolean myIsPerformSewing; // Handle bad walls in thicksolid mode.
Standard_Boolean myIsPlanar;
TopoDS_Shape myBadShape; TopoDS_Shape myBadShape;
}; };
#endif // _BRepOffset_MakeOffset_HeaderFile #endif // _BRepOffset_MakeOffset_HeaderFile

View File

@ -43,9 +43,11 @@ BRepOffsetAPI_MakeOffsetShape::BRepOffsetAPI_MakeOffsetShape
const BRepOffset_Mode Mode, const BRepOffset_Mode Mode,
const Standard_Boolean Intersection, const Standard_Boolean Intersection,
const Standard_Boolean SelfInter, const Standard_Boolean SelfInter,
const GeomAbs_JoinType Join) const GeomAbs_JoinType Join,
const Standard_Boolean RemoveIntEdges)
{ {
myOffsetShape.Initialize (S,Offset,Tol,Mode,Intersection,SelfInter,Join); myOffsetShape.Initialize (S,Offset,Tol,Mode,Intersection,SelfInter,
Join, Standard_False, RemoveIntEdges);
Build(); Build();
} }

View File

@ -82,6 +82,8 @@ public:
//! - if Join is equal to GeomAbs_Intersection, then the parallels to the //! - if Join is equal to GeomAbs_Intersection, then the parallels to the
//! two adjacent faces are enlarged and intersected, //! two adjacent faces are enlarged and intersected,
//! so that there are no free edges on parallels to faces. //! so that there are no free edges on parallels to faces.
//! RemoveIntEdges flag defines whether to remove the INTERNAL edges
//! from the result or not.
//! Warnings //! Warnings
//! 1. All the faces of the shape S should be based on the surfaces //! 1. All the faces of the shape S should be based on the surfaces
//! with continuity at least C1. //! with continuity at least C1.
@ -100,8 +102,15 @@ public:
//! Exceptions //! Exceptions
//! Geom_UndefinedDerivative if the underlying //! Geom_UndefinedDerivative if the underlying
//! geometry of S is BSpline with continuity C0. //! geometry of S is BSpline with continuity C0.
Standard_EXPORT BRepOffsetAPI_MakeOffsetShape(const TopoDS_Shape& S, const Standard_Real Offset, const Standard_Real Tol, const BRepOffset_Mode Mode = BRepOffset_Skin, const Standard_Boolean Intersection = Standard_False, const Standard_Boolean SelfInter = Standard_False, const GeomAbs_JoinType Join = GeomAbs_Arc); Standard_EXPORT BRepOffsetAPI_MakeOffsetShape(const TopoDS_Shape& S,
const Standard_Real Offset,
const Standard_Real Tol,
const BRepOffset_Mode Mode = BRepOffset_Skin,
const Standard_Boolean Intersection = Standard_False,
const Standard_Boolean SelfInter = Standard_False,
const GeomAbs_JoinType Join = GeomAbs_Arc,
const Standard_Boolean RemoveIntEdges = Standard_False);
Standard_EXPORT virtual const BRepOffset_MakeOffset& MakeOffset() const; Standard_EXPORT virtual const BRepOffset_MakeOffset& MakeOffset() const;
//! Builds the resulting shape (redefined from MakeShape). //! Builds the resulting shape (redefined from MakeShape).

View File

@ -44,9 +44,11 @@ BRepOffsetAPI_MakeThickSolid::BRepOffsetAPI_MakeThickSolid
const BRepOffset_Mode Mode, const BRepOffset_Mode Mode,
const Standard_Boolean Intersection, const Standard_Boolean Intersection,
const Standard_Boolean SelfInter, const Standard_Boolean SelfInter,
const GeomAbs_JoinType Join) const GeomAbs_JoinType Join,
const Standard_Boolean RemoveIntEdges)
{ {
myOffsetShape.Initialize (S,Offset,Tol,Mode,Intersection,SelfInter,Join); myOffsetShape.Initialize (S,Offset,Tol,Mode,Intersection,SelfInter,
Join, Standard_False, RemoveIntEdges);
TopTools_ListIteratorOfListOfShape it(ClosingFaces); TopTools_ListIteratorOfListOfShape it(ClosingFaces);
for (; it.More(); it.Next()) { for (; it.More(); it.Next()) {
myOffsetShape.AddFace(TopoDS::Face(it.Value())); myOffsetShape.AddFace(TopoDS::Face(it.Value()));

View File

@ -88,11 +88,21 @@ public:
//! then the parallels to the two adjacent faces are //! then the parallels to the two adjacent faces are
//! enlarged and intersected, so that there are no free //! enlarged and intersected, so that there are no free
//! edges on parallels to faces. //! edges on parallels to faces.
//! RemoveIntEdges flag defines whether to remove the INTERNAL edges
//! from the result or not.
//! Warnings //! Warnings
//! Since the algorithm of MakeThickSolid is based on //! Since the algorithm of MakeThickSolid is based on
//! MakeOffsetShape algorithm, the warnings are the same as for //! MakeOffsetShape algorithm, the warnings are the same as for
//! MakeOffsetShape. //! MakeOffsetShape.
Standard_EXPORT BRepOffsetAPI_MakeThickSolid(const TopoDS_Shape& S, const TopTools_ListOfShape& ClosingFaces, const Standard_Real Offset, const Standard_Real Tol, const BRepOffset_Mode Mode = BRepOffset_Skin, const Standard_Boolean Intersection = Standard_False, const Standard_Boolean SelfInter = Standard_False, const GeomAbs_JoinType Join = GeomAbs_Arc); Standard_EXPORT BRepOffsetAPI_MakeThickSolid(const TopoDS_Shape& S,
const TopTools_ListOfShape& ClosingFaces,
const Standard_Real Offset,
const Standard_Real Tol,
const BRepOffset_Mode Mode = BRepOffset_Skin,
const Standard_Boolean Intersection = Standard_False,
const Standard_Boolean SelfInter = Standard_False,
const GeomAbs_JoinType Join = GeomAbs_Arc,
const Standard_Boolean RemoveIntEdges = Standard_False);
//! Builds the resulting shape (redefined from MakeOffsetShape). //! Builds the resulting shape (redefined from MakeOffsetShape).
Standard_EXPORT virtual void Build() Standard_OVERRIDE; Standard_EXPORT virtual void Build() Standard_OVERRIDE;

View File

@ -865,7 +865,7 @@ Standard_Integer thickshell(Draw_Interpretor& theCommands,
Tol = Draw::Atof(a[5]); Tol = Draw::Atof(a[5]);
BRepOffset_MakeOffset B; BRepOffset_MakeOffset B;
B.Initialize(S,Of,Tol,BRepOffset_Skin,Inter,0,JT, Standard_True); B.Initialize(S,Of,Tol,BRepOffset_Skin,Inter,0,JT,Standard_True);
B.MakeOffsetShape(); B.MakeOffsetShape();
@ -942,63 +942,73 @@ static Standard_Boolean theYaBouchon;
static Standard_Real TheTolerance = Precision::Confusion(); static Standard_Real TheTolerance = Precision::Confusion();
static Standard_Boolean TheInter = Standard_False; static Standard_Boolean TheInter = Standard_False;
static GeomAbs_JoinType TheJoin = GeomAbs_Arc; static GeomAbs_JoinType TheJoin = GeomAbs_Arc;
static Standard_Boolean RemoveIntEdges = Standard_False;
static Standard_Boolean RemoveInvalidFaces = Standard_False;
Standard_Integer offsetparameter(Draw_Interpretor& di, Standard_Integer offsetparameter(Draw_Interpretor& di,
Standard_Integer n, const char** a) Standard_Integer n, const char** a)
{ {
if ( n == 1 ) { if ( n == 1 ) {
//cout << " OffsetParameter Tol Inter(c/p) JoinType(a/i)" << endl; di << " OffsetParameter Tol Inter(c/p) JoinType(a/i/t) [RemoveInternalEdges(r/k) RemoveInvalidFaces(r/k)]" << "\n";
//cout << " Current Values" << endl;
//cout << " --> Tolerance :" << TheTolerance << endl;
//cout << " --> TheInter :";
di << " OffsetParameter Tol Inter(c/p) JoinType(a/i)" << "\n";
di << " Current Values" << "\n"; di << " Current Values" << "\n";
di << " --> Tolerance :" << TheTolerance << "\n"; di << " --> Tolerance : " << TheTolerance << "\n";
di << " --> TheInter :"; di << " --> TheInter : ";
if ( TheInter) { if ( TheInter) {
//cout << "Complet" ;
di << "Complet" ; di << "Complet" ;
} else { } else {
//cout << "Partial";
di << "Partial"; di << "Partial";
} }
//cout << endl << " --> TheJoin :"; di << "\n" << " --> TheJoin : ";
di << "\n" << " --> TheJoin :";
switch (TheJoin) { switch (TheJoin) {
//case GeomAbs_Arc: cout << " Arc"; break; case GeomAbs_Arc: di << "Arc"; break;
//case GeomAbs_Intersection: cout << " Intersection"; break; case GeomAbs_Intersection: di << "Intersection"; break;
case GeomAbs_Arc: di << " Arc"; break;
case GeomAbs_Intersection: di << " Intersection"; break;
default: default:
break ; break ;
} }
//cout << endl; //
di << "\n" << " --> Internal Edges : ";
if (RemoveIntEdges) {
di << "Remove";
}
else {
di << "Keep";
}
//
di << "\n" << " --> Invalid Faces : ";
if (RemoveInvalidFaces) {
di << "Remove";
}
else {
di << "Keep";
}
di << "\n"; di << "\n";
//
return 0; return 0;
} }
if ( n < 4 ) return 1; if ( n < 4 ) return 1;
//
TheTolerance = Draw::Atof(a[1]); TheTolerance = Draw::Atof(a[1]);
TheInter = strcmp(a[2],"p"); TheInter = strcmp(a[2],"p");
//
if ( !strcmp(a[3],"a")) TheJoin = GeomAbs_Arc; if ( !strcmp(a[3],"a")) TheJoin = GeomAbs_Arc;
else if ( !strcmp(a[3],"i")) TheJoin = GeomAbs_Intersection; else if ( !strcmp(a[3],"i")) TheJoin = GeomAbs_Intersection;
else if ( !strcmp(a[3],"t")) TheJoin = GeomAbs_Tangent; else if ( !strcmp(a[3],"t")) TheJoin = GeomAbs_Tangent;
//
return 0; RemoveIntEdges = (n >= 5) ? !strcmp(a[4], "r") : Standard_False;
RemoveInvalidFaces = (n == 6) ? !strcmp(a[5], "r") : Standard_False;
//
return 0;
} }
//======================================================================= //=======================================================================
//function : offsetinit //function : offsetinit
//purpose : //purpose :
//======================================================================= //=======================================================================
Standard_Integer offsetload(Draw_Interpretor& , Standard_Integer offsetload(Draw_Interpretor& ,
Standard_Integer n, const char** a) Standard_Integer n, const char** a)
{ {
if ( n < 2) return 1; if ( n < 2) return 1;
TopoDS_Shape S = DBRep::Get(a[1]); TopoDS_Shape S = DBRep::Get(a[1]);
@ -1008,7 +1018,8 @@ Standard_Integer offsetload(Draw_Interpretor& ,
TheRadius = Of; TheRadius = Of;
// Standard_Boolean Inter = Standard_True; // Standard_Boolean Inter = Standard_True;
TheOffset.Initialize(S,Of,TheTolerance,BRepOffset_Skin,TheInter,0,TheJoin); TheOffset.Initialize(S,Of,TheTolerance,BRepOffset_Skin,TheInter,0,TheJoin,
Standard_False, RemoveIntEdges, RemoveInvalidFaces);
//------------------------------------------ //------------------------------------------
// recuperation et chargement des bouchons. // recuperation et chargement des bouchons.
//---------------------------------------- //----------------------------------------

View File

@ -1,6 +1,6 @@
puts "TODO OCC23068 ALL: An exception was caught" puts "TODO OCC23068 ALL: ERROR. offsetperform operation not done."
puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*" puts "TODO OCC23068 ALL: Error : The offset cannot be built."
puts "TODO OCC23068 ALL: TEST INCOMPLETE"
psphere s 15 90 psphere s 15 90
trotate s 0 0 0 0 0 1 90 trotate s 0 0 0 0 0 1 90

View File

@ -1,5 +1,5 @@
puts "TODO OCC23068 ALL: Error : The volume of the resulting shape is" puts "TODO OCC23068 ALL: Error : The volume of the resulting shape is"
puts "TODO OCC25406 ALL: Error: bsection of the result and s is not equal to zero" puts "TODO OCC25406 ALL: Faulty shapes in variables faulty_1 to"
ellipse w1 0 0 0 15 10 ellipse w1 0 0 0 15 10
mkedge w1 w1 0 pi/2 mkedge w1 w1 0 pi/2

View File

@ -1,6 +1,6 @@
puts "TODO OCC23068 ALL: An exception was caught" puts "TODO OCC23068 ALL: ERROR. offsetperform operation not done."
puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*" puts "TODO OCC23068 ALL: Error : The offset cannot be built."
puts "TODO OCC23068 ALL: TEST INCOMPLETE"
ptorus s 10 10 0 45 ptorus s 10 10 0 45
OFFSETSHAPE 1 {s_2} $calcul $type OFFSETSHAPE 1 {s_2} $calcul $type

View File

@ -14,4 +14,5 @@
014 wire_unclosed_outside_0_025 014 wire_unclosed_outside_0_025
015 wire_unclosed_outside_0_075 015 wire_unclosed_outside_0_075
016 with_intersect_20 016 with_intersect_20
017 with_intersect_80 017 with_intersect_80
018 shape_type_i_c

View File

@ -1,9 +1,6 @@
puts "TODO OCC23068 ALL: An exception was caught"
puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*"
puts "TODO OCC23068 ALL: TEST INCOMPLETE"
psphere s 15 90 psphere s 15 90
trotate s 0 0 0 0 0 1 90 trotate s 0 0 0 0 0 1 90
OFFSETSHAPE 1 {} $calcul $type OFFSETSHAPE 1 {} $calcul $type
set volume 0 set volume 1.77778e+16

View File

@ -1,8 +1,7 @@
puts "TODO OCC23068 ALL: An exception was caught" puts "TODO OCC23068 ALL: Error: bsection of the result and s is not equal to zero."
puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*"
puts "TODO OCC23068 ALL: TEST INCOMPLETE"
psphere s 15 270 psphere s 15 270
OFFSETSHAPE 1 {} $calcul $type OFFSETSHAPE 1 {} $calcul $type
set volume 0 set volume 1.77778e+16

View File

@ -1,6 +1,6 @@
puts "TODO OCC23068 ALL: An exception was caught" puts "TODO OCC23068 ALL: result is not a topological shape"
puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*"
puts "TODO OCC23068 ALL: TEST INCOMPLETE" puts "TODO OCC23068 ALL: TEST INCOMPLETE"
ptorus s 10 10 0 45 ptorus s 10 10 0 45
OFFSETSHAPE 1 {} $calcul $type OFFSETSHAPE 1 {} $calcul $type

View File

@ -1,5 +1,5 @@
puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to"
puts "TODO OCC23068 ALL: Error : The volume of the resulting shape is" puts "TODO OCC23068 ALL: Error : The volume of the resulting shape is"
puts "TODO OCC25406 ALL: Error: bsection of the result and s is not equal to zero"
ellipse w1 0 0 0 15 10 ellipse w1 0 0 0 15 10
mkedge w1 w1 0 pi/2 mkedge w1 w1 0 pi/2

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_box_cut_4boxes.brep] s
OFFSETSHAPE 0.1 {} $calcul $type
set volume 925.196

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_box_cut_4boxes.brep] s
OFFSETSHAPE 0.3 {} $calcul $type
set volume 1068.58

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_box_cut_4boxes.brep] s
OFFSETSHAPE 0.6 {} $calcul $type
set volume 1296.86

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_box_cut_4boxes.brep] s
OFFSETSHAPE 0.9 {} $calcul $type
set volume 1543.91

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_box_cut_4boxes.brep] s
OFFSETSHAPE 1.2 {} $calcul $type
set volume 1817.34

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_box_cut_4boxes.brep] s
OFFSETSHAPE 1.5 {} $calcul $type
set volume 2119

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_box_cut_4boxes.brep] s
OFFSETSHAPE 1.8 {} $calcul $type
set volume 2450.18

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_box_cut_4boxes.brep] s
OFFSETSHAPE 2.1 {} $calcul $type
set volume 2812.17

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_box_cut_4boxes.brep] s
OFFSETSHAPE 2.4 {} $calcul $type
set volume 3206.27

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_slanted.brep] s
OFFSETSHAPE 3 {} $calcul $type
set volume 2.00176e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_slanted.brep] s
OFFSETSHAPE 6 {} $calcul $type
set volume 2.19865e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_slanted.brep] s
OFFSETSHAPE 10 {} $calcul $type
set volume 2.47223e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_slanted.brep] s
OFFSETSHAPE 18 {} $calcul $type
set volume 3.05847e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_slanted.brep] s
OFFSETSHAPE 21 {} $calcul $type
set volume 3.29213e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_slanted.brep] s
OFFSETSHAPE 25 {} $calcul $type
set volume 3.61487e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_slanted.brep] s
OFFSETSHAPE 26 {} $calcul $type
set volume 3.6976e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_slanted.brep] s
OFFSETSHAPE 36 {} $calcul $type
set volume 4.58112e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_slanted.brep] s
OFFSETSHAPE 44 {} $calcul $type
set volume 5.36522e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_input_shape.brep] s
OFFSETSHAPE 3 {} $calcul $type
set volume 5.53893e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_input_shape.brep] s
OFFSETSHAPE 6 {} $calcul $type
set volume 5.70329e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_input_shape.brep] s
OFFSETSHAPE 10 {} $calcul $type
set volume 5.92261e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_input_shape.brep] s
OFFSETSHAPE 13 {} $calcul $type
set volume 6.08723e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_input_shape.brep] s
OFFSETSHAPE 18 {} $calcul $type
set volume 6.36191e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_input_shape.brep] s
OFFSETSHAPE 30 {} $calcul $type
set volume 7.02144e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_input_shape.brep] s
OFFSETSHAPE 40 {} $calcul $type
set volume 7.58284e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_input_shape.brep] s
OFFSETSHAPE 50 {} $calcul $type
set volume 8.16e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_input_shape.brep] s
OFFSETSHAPE 60 {} $calcul $type
set volume 8.75772e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_offset_shape_tc80_2_smaller.brep] s
OFFSETSHAPE 5 {} $calcul $type
set volume 3.03855e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_offset_shape_tc80_2_smaller.brep] s
OFFSETSHAPE 10 {} $calcul $type
set volume 3.38527e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_offset_shape_tc80_2_smaller.brep] s
OFFSETSHAPE 15 {} $calcul $type
set volume 3.68177e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_offset_shape_tc80_3_smaller.brep] s
OFFSETSHAPE 5 {} $calcul $type
set volume 3.13188e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_offset_shape_tc80_3_smaller.brep] s
OFFSETSHAPE 10 {} $calcul $type
set volume 3.44873e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_offset_shape_tc80_3_smaller.brep] s
OFFSETSHAPE 15 {} $calcul $type
set volume 3.72139e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_shape_input_tc80.2.brep] s
OFFSETSHAPE 5 {} $calcul $type
set volume 1.01936e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_shape_input_tc80.2.brep] s
OFFSETSHAPE 10 {} $calcul $type
set volume 1.14248e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_shape_input_tc80.2.brep] s
OFFSETSHAPE 15 {} $calcul $type
set volume 1.25498e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_shape_input_tc80.3.brep] s
OFFSETSHAPE 5 {} $calcul $type
set volume 1.05054e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_shape_input_tc80.3.brep] s
OFFSETSHAPE 10 {} $calcul $type
set volume 1.16522e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_offset_shape_input_tc80.3.brep] s
OFFSETSHAPE 15 {} $calcul $type
set volume 1.27083e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_shape_fails.brep] s
OFFSETSHAPE 5 {} $calcul $type
set volume 2.1234e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_shape_fails.brep] s
OFFSETSHAPE 30 {} $calcul $type
set volume 4.0384e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_input_shape_fails.brep] s
OFFSETSHAPE 60 {} $calcul $type
set volume 7.15e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_trapezoid_1.brep] s
OFFSETSHAPE 10 {} $calcul $type
set volume 244837

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_spike_shape.brep] s
OFFSETSHAPE 10 {} $calcul $type
set volume 4.30309e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_spike_shape.brep] s
OFFSETSHAPE 15 {} $calcul $type
set volume 4.79673e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_undercut_1.brep] s
OFFSETSHAPE 5 {} $calcul $type
set volume 2.7823e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_undercut_1.brep] s
OFFSETSHAPE 15 {} $calcul $type
set volume 3.89013e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_undercut_1.brep] s
OFFSETSHAPE 25 {} $calcul $type
set volume 5.10815e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_undercut_1.brep] s
OFFSETSHAPE 30 {} $calcul $type
set volume 5.7548e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_undercut_1.brep] s
OFFSETSHAPE 40 {} $calcul $type
set volume 7.1364e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_unit_cell_grid.brep] s
OFFSETSHAPE 5 {} $calcul $type
set volume 2.46039e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_unit_cell_grid.brep] s
OFFSETSHAPE 10 {} $calcul $type
set volume 2.8855e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_unit_cell_grid.brep] s
OFFSETSHAPE 25 {} $calcul $type
set volume 4.21733e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_unit_cell_grid.brep] s
OFFSETSHAPE 30 {} $calcul $type
set volume 4.67244e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_three_chimneys.brep] s
OFFSETSHAPE 10 {} $calcul $type
set volume 2.5576e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_three_chimneys.brep] s
OFFSETSHAPE 20 {} $calcul $type
set volume 3.2592e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_three_chimneys.brep] s
OFFSETSHAPE 25 {} $calcul $type
set volume 3.6439e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_three_chimneys.brep] s
OFFSETSHAPE 50 {} $calcul $type
set volume 5.9724e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_three_chimneys_duplicated.brep] s
OFFSETSHAPE 10 {} $calcul $type
set volume 2.11792e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_three_chimneys_duplicated.brep] s
OFFSETSHAPE 20 {} $calcul $type
set volume 2.51328e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_three_chimneys_duplicated.brep] s
OFFSETSHAPE 30 {} $calcul $type
set volume 2.93724e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_three_chimneys_duplicated.brep] s
OFFSETSHAPE 50 {} $calcul $type
set volume 3.89556e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_three_chimneys_duplicated.brep] s
OFFSETSHAPE 60 {} $calcul $type
set volume 4.33344e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_example_1_side_10_top_10.brep] s
OFFSETSHAPE 10 {} $calcul $type
set volume 9.6408e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_example_1_side_10_top_10.brep] s
OFFSETSHAPE 15 {} $calcul $type
set volume 1.07272e+008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_example_2_side_26_top_0.brep] s
OFFSETSHAPE 26 {} $calcul $type
set volume 3.14983e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_example_3_side_30_top_0.brep] s
OFFSETSHAPE 35 {} $calcul $type
set volume 8.08679e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_example_3_side_30_top_0.brep] s
OFFSETSHAPE 45 {} $calcul $type
set volume 9.51489e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_example_4_side_30_top_10.brep] s
OFFSETSHAPE 35 {} $calcul $type
set volume 4.8893e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_example_4_side_30_top_10.brep] s
OFFSETSHAPE 45 {} $calcul $type
set volume 5.89638e+007

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_b5.brep] s
OFFSETSHAPE 2 {} $calcul $type
set volume 4580.57

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_b5.brep] s
OFFSETSHAPE 11 {} $calcul $type
set volume 43008

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_b1x.brep] s
OFFSETSHAPE 2 {} $calcul $type
set volume 1756.4

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_b1x.brep] s
OFFSETSHAPE 5 {} $calcul $type
set volume 6000

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_b1.brep] s
OFFSETSHAPE 1 {} $calcul $type
set volume 5328

View File

@ -0,0 +1,7 @@
polyline p 0 0 0 5 0 0 7 0 3 3 0 3 4 0 1 1 0 1 2 0 3 -2 0 3 0 0 0
mkplane f p
prism s f 0 5 0
OFFSETSHAPE 0.6 {} $calcul $type
set volume 216.363

View File

@ -0,0 +1,7 @@
polyline p 0 0 0 5 0 0 7 0 3 3 0 3 4 0 1 1 0 1 2 0 3 -2 0 3 0 0 0
mkplane f p
prism s f 0 5 0
OFFSETSHAPE 1.2 {} $calcul $type
set volume 394.982

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_parasite_solid.brep] s
OFFSETSHAPE 1 {} $calcul $type
set volume 1450.99

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_parasite_solid_s.brep] s
OFFSETSHAPE 1 {} $calcul $type
set volume 1304.43

View File

@ -0,0 +1,5 @@
restore [locate_data_file bug25926_parasite_solid_s2.brep] s
OFFSETSHAPE 1 {} $calcul $type
set volume 1217.22

Some files were not shown because too many files have changed in this diff Show More