mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0030346: Modeling Algorithms - BRepPrimAPI_MakeRevol throws "BRepSweep_Translation::MakeEmptyVertex"
Implementation of method "IsDeleted(...)" for MakeRevol and MakePrism algorithms. Problem (exception) occurs during history building and was caused by an attempt to obtain generated shape for subshape, which was really "deleted" by algorithm - this input subshape and its possible generated shape was not used in result.
This commit is contained in:
parent
39235bedc6
commit
80eeb3cef1
@ -114,7 +114,10 @@ TopoDS_Shape BRepPrimAPI_MakePrism::LastShape()
|
||||
const TopTools_ListOfShape& BRepPrimAPI_MakePrism::Generated (const TopoDS_Shape& S)
|
||||
{
|
||||
myGenerated.Clear();
|
||||
myGenerated.Append(myPrism.Shape (S));
|
||||
if (myPrism.IsUsed(S) && myPrism.GenIsUsed(S))
|
||||
{
|
||||
myGenerated.Append(myPrism.Shape(S));
|
||||
}
|
||||
return myGenerated;
|
||||
|
||||
}
|
||||
@ -146,3 +149,13 @@ TopoDS_Shape BRepPrimAPI_MakePrism::LastShape(const TopoDS_Shape &theShape)
|
||||
}
|
||||
|
||||
// Modified by skv - Fri Mar 4 15:50:09 2005 End
|
||||
|
||||
//=======================================================================
|
||||
//function : IsDeleted
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Boolean BRepPrimAPI_MakePrism::IsDeleted(const TopoDS_Shape& S)
|
||||
{
|
||||
return !myPrism.IsUsed(S);
|
||||
}
|
||||
|
||||
|
@ -87,7 +87,10 @@ public:
|
||||
|
||||
//! Returns ListOfShape from TopTools.
|
||||
Standard_EXPORT virtual const TopTools_ListOfShape& Generated (const TopoDS_Shape& S) Standard_OVERRIDE;
|
||||
|
||||
|
||||
//! Returns true if the shape S has been deleted.
|
||||
Standard_EXPORT virtual Standard_Boolean IsDeleted(const TopoDS_Shape& S) Standard_OVERRIDE;
|
||||
|
||||
//! Returns the TopoDS Shape of the bottom of the prism.
|
||||
//! generated with theShape (subShape of the generating shape).
|
||||
Standard_EXPORT TopoDS_Shape FirstShape (const TopoDS_Shape& theShape);
|
||||
@ -96,9 +99,6 @@ public:
|
||||
//! generated with theShape (subShape of the generating shape).
|
||||
Standard_EXPORT TopoDS_Shape LastShape (const TopoDS_Shape& theShape);
|
||||
|
||||
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
|
@ -240,16 +240,49 @@ TopoDS_Shape BRepPrimAPI_MakeRevol::LastShape()
|
||||
const TopTools_ListOfShape& BRepPrimAPI_MakeRevol::Generated (const TopoDS_Shape& S)
|
||||
{
|
||||
myGenerated.Clear();
|
||||
|
||||
if (!myRevol.IsUsed(S))
|
||||
{
|
||||
return myGenerated;
|
||||
}
|
||||
|
||||
TopoDS_Shape aGS = myRevol.Shape(S);
|
||||
if (!aGS.IsNull())
|
||||
{
|
||||
if (BRepTools_History::IsSupportedType(aGS))
|
||||
{
|
||||
if (aGS.ShapeType() == TopAbs_EDGE)
|
||||
{
|
||||
Standard_Boolean isDeg = BRep_Tool::Degenerated(TopoDS::Edge(aGS));
|
||||
if (isDeg)
|
||||
{
|
||||
TopTools_ListIteratorOfListOfShape anIt(myDegenerated);
|
||||
for (; anIt.More(); anIt.Next())
|
||||
{
|
||||
if (aGS.IsSame(anIt.Value()))
|
||||
{
|
||||
myGenerated.Append(aGS);
|
||||
if (!myHist.IsNull())
|
||||
{
|
||||
TopTools_ListIteratorOfListOfShape anIt1(myHist->Modified(aGS));
|
||||
for (; anIt1.More(); anIt1.Next())
|
||||
{
|
||||
myGenerated.Append(anIt1.Value());
|
||||
}
|
||||
return myGenerated;
|
||||
}
|
||||
}
|
||||
}
|
||||
return myGenerated;
|
||||
}
|
||||
}
|
||||
//
|
||||
if (myHist.IsNull())
|
||||
{
|
||||
myGenerated.Append(aGS);
|
||||
return myGenerated;
|
||||
}
|
||||
//
|
||||
if (myHist->Modified(aGS).IsEmpty())
|
||||
{
|
||||
myGenerated.Append(aGS);
|
||||
@ -261,18 +294,19 @@ const TopTools_ListOfShape& BRepPrimAPI_MakeRevol::Generated (const TopoDS_Shape
|
||||
{
|
||||
myGenerated.Append(anIt.Value());
|
||||
}
|
||||
if (aGS.ShapeType() == TopAbs_EDGE)
|
||||
{
|
||||
if (BRep_Tool::Degenerated(TopoDS::Edge(aGS)))
|
||||
{
|
||||
//Append initial common deg. edge
|
||||
myGenerated.Append(aGS);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return myGenerated;
|
||||
}
|
||||
//=======================================================================
|
||||
//function : IsDeleted
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Boolean BRepPrimAPI_MakeRevol::IsDeleted(const TopoDS_Shape& S)
|
||||
{
|
||||
return !myRevol.IsUsed(S);
|
||||
}
|
||||
|
||||
|
||||
//=======================================================================
|
||||
//function : FirstShape
|
||||
|
@ -95,6 +95,10 @@ public:
|
||||
//! Warning: shape S must be shape of type VERTEX, EDGE, FACE, SOLID.
|
||||
//! For shapes of other types method always returns empty list
|
||||
Standard_EXPORT virtual const TopTools_ListOfShape& Generated (const TopoDS_Shape& S) Standard_OVERRIDE;
|
||||
|
||||
//! Returns true if the shape S has been deleted.
|
||||
Standard_EXPORT virtual Standard_Boolean IsDeleted(const TopoDS_Shape& S) Standard_OVERRIDE;
|
||||
|
||||
|
||||
//! Returns the TopoDS Shape of the beginning of the revolution,
|
||||
//! generated with theShape (subShape of the generating shape).
|
||||
|
@ -30,6 +30,7 @@
|
||||
#include <TopAbs_Orientation.hxx>
|
||||
#include <TopoDS_Shape.hxx>
|
||||
#include <TopTools_SequenceOfShape.hxx>
|
||||
#include <TopoDS.hxx>
|
||||
|
||||
//=======================================================================
|
||||
//function : BRepSweep_NumLinearRegularSweep
|
||||
@ -54,9 +55,12 @@ myBuilder(aBuilder),
|
||||
myShapes(1,myGenShapeTool.NbShapes(),
|
||||
1,myDirShapeTool.NbShapes()),
|
||||
myBuiltShapes(1,myGenShapeTool.NbShapes(),
|
||||
1,myDirShapeTool.NbShapes())
|
||||
1,myDirShapeTool.NbShapes()),
|
||||
myUsedShapes(1, myGenShapeTool.NbShapes(),
|
||||
1, myDirShapeTool.NbShapes())
|
||||
{
|
||||
myBuiltShapes.Init(Standard_False);
|
||||
myUsedShapes.Init(Standard_False);
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
@ -156,7 +160,9 @@ TopoDS_Shape BRepSweep_NumLinearRegularSweep::Shape (const TopoDS_Shape& aGenS,
|
||||
Or = It.Orientation();
|
||||
if(HasShape(subGenS,aDirS)){
|
||||
newShape = Shape(subGenS,aDirS);
|
||||
if (GGDShapeIsToAdd(myShapes(iGenS,iDirS),newShape,
|
||||
Standard_Integer iNewGenS = myGenShapeTool.Index(subGenS);
|
||||
Standard_Integer iNewDirS = iDirS;
|
||||
if (GGDShapeIsToAdd(myShapes(iGenS, iDirS), newShape,
|
||||
aGenS,subGenS,aDirS)){
|
||||
//Les "planchers" doivent etre construits par les
|
||||
//fonctions de construcion geometrique identiquement
|
||||
@ -165,6 +171,7 @@ TopoDS_Shape BRepSweep_NumLinearRegularSweep::Shape (const TopoDS_Shape& aGenS,
|
||||
//sur.
|
||||
|
||||
myBuilder.Add(myShapes(iGenS,iDirS),newShape,Or);
|
||||
myUsedShapes(iNewGenS, iNewDirS) = Standard_True;
|
||||
TopAbs_ShapeEnum subGenSType = myGenShapeTool.Type(subGenS);
|
||||
if (aGenSType==TopAbs_FACE){
|
||||
if(subGenSType==TopAbs_VERTEX){
|
||||
@ -248,7 +255,9 @@ TopoDS_Shape BRepSweep_NumLinearRegularSweep::Shape (const TopoDS_Shape& aGenS,
|
||||
subGenS = It.Value();
|
||||
if(HasShape(subGenS,aDirS)){
|
||||
newShape = Shape(subGenS,aDirS);
|
||||
if (GGDShapeIsToAdd(myShapes(iGenS,iDirS),newShape,
|
||||
Standard_Integer iNewGenS = myGenShapeTool.Index(subGenS);
|
||||
Standard_Integer iNewDirS = iDirS;
|
||||
if (GGDShapeIsToAdd(myShapes(iGenS, iDirS), newShape,
|
||||
aGenS,subGenS,aDirS)){
|
||||
TopAbs_ShapeEnum subGenSType = myGenShapeTool.Type(subGenS);
|
||||
if (aGenSType==TopAbs_EDGE){
|
||||
@ -259,11 +268,13 @@ TopoDS_Shape BRepSweep_NumLinearRegularSweep::Shape (const TopoDS_Shape& aGenS,
|
||||
TopoDS_Shape wi;
|
||||
myBuilder.MakeWire(wi);
|
||||
myBuilder.Add(wi,newShape,Or);
|
||||
myUsedShapes(iNewGenS, iNewDirS) = Standard_True;
|
||||
wi.Closed(BRep_Tool::IsClosed(wi));
|
||||
WireSeq.Append(wi);
|
||||
}
|
||||
else{
|
||||
myBuilder.Add(newWire,newShape,Or);
|
||||
myUsedShapes(iNewGenS, iNewDirS) = Standard_True;
|
||||
}
|
||||
SetDirectingPCurve (myShapes(iGenS,iDirS),
|
||||
newShape,bGenS,subGenS,aDirS,Or);
|
||||
@ -271,6 +282,7 @@ TopoDS_Shape BRepSweep_NumLinearRegularSweep::Shape (const TopoDS_Shape& aGenS,
|
||||
else if (aGenSType==TopAbs_WIRE){
|
||||
Or = It.Orientation();
|
||||
myBuilder.Add(myShapes(iGenS,iDirS),newShape,Or);
|
||||
myUsedShapes(iNewGenS, iNewDirS) = Standard_True;
|
||||
}
|
||||
else if (aGenSType==TopAbs_FACE){
|
||||
Or = It.Orientation();
|
||||
@ -282,19 +294,23 @@ TopoDS_Shape BRepSweep_NumLinearRegularSweep::Shape (const TopoDS_Shape& aGenS,
|
||||
}
|
||||
else if(subGenSType == TopAbs_EDGE) {
|
||||
myBuilder.Add(newShell,newShape,Or);
|
||||
myUsedShapes(iNewGenS, iNewDirS) = Standard_True;
|
||||
}
|
||||
}
|
||||
else if(aGenSType == TopAbs_SHELL){
|
||||
Or = TopAbs_FORWARD;
|
||||
myBuilder.Add(myShapes(iGenS,iDirS),newShape,Or);
|
||||
myUsedShapes(iNewGenS, iNewDirS) = Standard_True;
|
||||
}
|
||||
else if(aGenSType == TopAbs_COMPOUND){
|
||||
Or = TopAbs_FORWARD;
|
||||
myBuilder.Add(myShapes(iGenS,iDirS),newShape,Or);
|
||||
myUsedShapes(iNewGenS, iNewDirS) = Standard_True;
|
||||
}
|
||||
else{
|
||||
Or = It.Orientation();
|
||||
myBuilder.Add(myShapes(iGenS,iDirS),newShape,Or);
|
||||
myUsedShapes(iNewGenS, iNewDirS) = Standard_True;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -304,23 +320,28 @@ TopoDS_Shape BRepSweep_NumLinearRegularSweep::Shape (const TopoDS_Shape& aGenS,
|
||||
subDirS = Kt.Value();
|
||||
if(HasShape(aGenS,subDirS)){
|
||||
newShape = Shape(aGenS,subDirS);
|
||||
Standard_Integer iNewGenS = iGenS;
|
||||
Standard_Integer iNewDirS = myDirShapeTool.Index(subDirS);
|
||||
if (GDDShapeIsToAdd(myShapes(iGenS,iDirS),newShape,
|
||||
aGenS,aDirS,subDirS)){
|
||||
if (aGenSType==TopAbs_EDGE){
|
||||
Or = TopAbs::Reverse(Kt.Orientation());
|
||||
myBuilder.Add(newWire,newShape,Or);
|
||||
myUsedShapes(iNewGenS, iNewDirS) = Standard_True;
|
||||
SetGeneratingPCurve
|
||||
(myShapes(iGenS,iDirS),newShape,aGenS,aDirS,subDirS,Or);
|
||||
}
|
||||
else if(aGenSType==TopAbs_VERTEX){
|
||||
Or = Kt.Orientation();
|
||||
myBuilder.Add(myShapes(iGenS,iDirS),newShape,Or);
|
||||
myUsedShapes(iNewGenS, iNewDirS) = Standard_True;
|
||||
SetDirectingParameter
|
||||
(myShapes(iGenS,iDirS),newShape,aGenS,aDirS,subDirS);
|
||||
}
|
||||
else if(aGenSType==TopAbs_FACE){
|
||||
Or = Kt.Orientation();
|
||||
myBuilder.Add(newShell,newShape,Or);
|
||||
myUsedShapes(iNewGenS, iNewDirS) = Standard_True;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -390,9 +411,12 @@ TopoDS_Shape BRepSweep_NumLinearRegularSweep::Shape (const TopoDS_Shape& aGenS,
|
||||
for (Kt.Init(aDirS);Kt.More();Kt.Next()){
|
||||
subDirS = Kt.Value();
|
||||
if(HasShape(aGenS,subDirS)){
|
||||
Standard_Integer iNewGenS = iGenS;
|
||||
Standard_Integer iNewDirS = myDirShapeTool.Index(subDirS);
|
||||
Or = Kt.Orientation();
|
||||
newShape = Shape(aGenS,subDirS);
|
||||
myBuilder.Add(myShapes(iGenS,iDirS),newShape,Or);
|
||||
myUsedShapes(iNewGenS, iNewDirS) = Standard_True;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -492,3 +516,67 @@ TopoDS_Shape BRepSweep_NumLinearRegularSweep::SplitShell(const TopoDS_Shape& aNe
|
||||
return comp;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : IsUsed
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Boolean BRepSweep_NumLinearRegularSweep::IsUsed(const TopoDS_Shape& aGenS) const
|
||||
{
|
||||
Standard_Integer iGenS = myGenShapeTool.Index(aGenS);
|
||||
Standard_OutOfRange_Raise_if(iGenS == 0,
|
||||
"BRepSweep_NumLinearRegularSweep::IsUsed: shape index = 0")
|
||||
Standard_Integer j;
|
||||
Standard_Boolean isBuilt = Standard_False;
|
||||
Standard_Boolean isUsed = Standard_False;
|
||||
for (j = 2; j <= myBuiltShapes.UpperCol(); ++j)
|
||||
{
|
||||
isBuilt = isBuilt || myBuiltShapes(iGenS, j);
|
||||
isUsed = isUsed || myUsedShapes(iGenS, j);
|
||||
}
|
||||
if (isUsed)
|
||||
{
|
||||
if (aGenS.ShapeType() == TopAbs_VERTEX && IsInvariant(aGenS))
|
||||
{
|
||||
if (myUsedShapes(iGenS, 1) || !Closed())
|
||||
{
|
||||
return isUsed;
|
||||
}
|
||||
else
|
||||
{
|
||||
return Standard_False;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
return isUsed;
|
||||
}
|
||||
}
|
||||
//
|
||||
if (isBuilt) //&& !IsUsed
|
||||
{
|
||||
if (!HasShape(aGenS, myDirWire) && !Closed())
|
||||
{
|
||||
return Standard_True;
|
||||
}
|
||||
else if (aGenS.ShapeType() == TopAbs_VERTEX && !Closed())
|
||||
{
|
||||
if (!myBuiltShapes(iGenS, 1))
|
||||
{
|
||||
return Standard_True;
|
||||
}
|
||||
}
|
||||
}
|
||||
return isUsed;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : GenIsUsed
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Boolean BRepSweep_NumLinearRegularSweep::GenIsUsed(const TopoDS_Shape& aGenS) const
|
||||
{
|
||||
Standard_Integer iGenS = myGenShapeTool.Index(aGenS);
|
||||
Standard_OutOfRange_Raise_if(iGenS == 0,
|
||||
"BRepSweep_NumLinearRegularSweep::GenIsUsed: shape index = 0")
|
||||
return myBuiltShapes(iGenS, 1) && myUsedShapes(iGenS, 1);
|
||||
}
|
||||
|
@ -171,7 +171,10 @@ public:
|
||||
//! can be geometrically inexsistant, then this
|
||||
//! function returns false.
|
||||
Standard_EXPORT virtual Standard_Boolean HasShape (const TopoDS_Shape& aGenS, const Sweep_NumShape& aDirS) const = 0;
|
||||
|
||||
|
||||
//! Returns true if aGenS cannot be transformed.
|
||||
Standard_EXPORT virtual Standard_Boolean IsInvariant(const TopoDS_Shape& aGenS) const = 0;
|
||||
|
||||
//! Returns the resulting Shape indexed by aDirS and
|
||||
//! aGenS.
|
||||
Standard_EXPORT TopoDS_Shape Shape (const TopoDS_Shape& aGenS, const Sweep_NumShape& aDirS);
|
||||
@ -179,7 +182,15 @@ public:
|
||||
//! Returns the resulting Shape indexed by myDirWire
|
||||
//! and aGenS.
|
||||
Standard_EXPORT TopoDS_Shape Shape (const TopoDS_Shape& aGenS);
|
||||
|
||||
|
||||
//! Returns true if the initial shape aGenS
|
||||
//! is used in result shape
|
||||
Standard_EXPORT Standard_Boolean IsUsed(const TopoDS_Shape& aGenS) const;
|
||||
|
||||
//! Returns true if the shape, generated from theS
|
||||
//! is used in result shape
|
||||
Standard_EXPORT Standard_Boolean GenIsUsed(const TopoDS_Shape& theS) const;
|
||||
|
||||
//! Returns the resulting Shape indexed by myDirWire
|
||||
//! and myGenShape.
|
||||
Standard_EXPORT TopoDS_Shape Shape();
|
||||
@ -220,6 +231,7 @@ protected:
|
||||
Sweep_NumShapeTool myDirShapeTool;
|
||||
TopTools_Array2OfShape myShapes;
|
||||
TColStd_Array2OfBoolean myBuiltShapes;
|
||||
TColStd_Array2OfBoolean myUsedShapes;
|
||||
|
||||
|
||||
private:
|
||||
|
@ -185,3 +185,21 @@ TopLoc_Location BRepSweep_Prism::Location(const gp_Vec& V)const
|
||||
TopLoc_Location L(gpt);
|
||||
return L;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : IsUsed
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Boolean BRepSweep_Prism::IsUsed(const TopoDS_Shape& aGenS) const
|
||||
{
|
||||
return myTranslation.IsUsed(aGenS);
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : GenIsUsed
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Boolean BRepSweep_Prism::GenIsUsed(const TopoDS_Shape& aGenS) const
|
||||
{
|
||||
return myTranslation.GenIsUsed(aGenS);
|
||||
}
|
||||
|
@ -80,7 +80,13 @@ public:
|
||||
Standard_EXPORT gp_Vec Vec() const;
|
||||
|
||||
|
||||
//! Returns true if the
|
||||
//! aGenS is used in resulting shape
|
||||
Standard_EXPORT Standard_Boolean IsUsed(const TopoDS_Shape& aGenS) const;
|
||||
|
||||
//! Returns true if the shape, generated from theS
|
||||
//! is used in result shape
|
||||
Standard_EXPORT Standard_Boolean GenIsUsed(const TopoDS_Shape& theS) const;
|
||||
|
||||
protected:
|
||||
|
||||
|
@ -215,3 +215,11 @@ gp_Ax1 BRepSweep_Revol::Axe()const
|
||||
}
|
||||
|
||||
|
||||
//=======================================================================
|
||||
//function : IsUsed
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Boolean BRepSweep_Revol::IsUsed(const TopoDS_Shape& aGenS) const
|
||||
{
|
||||
return myRotation.IsUsed(aGenS);
|
||||
}
|
||||
|
@ -77,6 +77,10 @@ public:
|
||||
//! returns the angle.
|
||||
Standard_EXPORT Standard_Real Angle() const;
|
||||
|
||||
//! Returns true if the aGenS is used in resulting Shape
|
||||
Standard_EXPORT Standard_Boolean IsUsed(const TopoDS_Shape& aGenS) const;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
//! builds the NumShape.
|
||||
|
@ -160,7 +160,7 @@ TopoDS_Shape BRepSweep_Rotation::MakeEmptyVertex
|
||||
{
|
||||
//call only in construction mode with copy.
|
||||
Standard_ConstructionError_Raise_if
|
||||
(!myCopy,"BRepSweep_Translation::MakeEmptyVertex");
|
||||
(!myCopy,"BRepSweep_Rotation::MakeEmptyVertex");
|
||||
gp_Pnt P = BRep_Tool::Pnt(TopoDS::Vertex(aGenV));
|
||||
TopoDS_Vertex V;
|
||||
if (aDirV.Index()==2) P.Transform(myLocation.Transformation());
|
||||
|
File diff suppressed because it is too large
Load Diff
21
tests/bugs/modalg_7/bug30346_1
Normal file
21
tests/bugs/modalg_7/bug30346_1
Normal file
@ -0,0 +1,21 @@
|
||||
puts "========"
|
||||
puts "0030346: Modeling Algorithms - BRepPrimAPI_MakeRevol throws BRepSweep_Translation::MakeEmptyVertex"
|
||||
puts "========"
|
||||
puts ""
|
||||
|
||||
pload MODELING
|
||||
|
||||
plane f 0 0 0 0 1 0
|
||||
mkface f f 0 1 0 1
|
||||
revol r1 f 0 0 0 0 0 1 60
|
||||
savehistory h1
|
||||
set s1 [dump h1]
|
||||
if { !([regexp "0 Deleted" $s1] && [regexp "6 Generated" $s1])} {
|
||||
puts "Error: wrong history h1"
|
||||
}
|
||||
revol r2 f 0 0 0 0 0 1 360
|
||||
savehistory h2
|
||||
set s2 [dump h2]
|
||||
if { !([regexp "6 Deleted" $s2] && [regexp "3 Generated" $s2])} {
|
||||
puts "Error: wrong history h2"
|
||||
}
|
23
tests/bugs/modalg_7/bug30346_2
Normal file
23
tests/bugs/modalg_7/bug30346_2
Normal file
@ -0,0 +1,23 @@
|
||||
puts "========"
|
||||
puts "0030346: Modeling Algorithms - BRepPrimAPI_MakeRevol throws BRepSweep_Translation::MakeEmptyVertex"
|
||||
puts "========"
|
||||
puts ""
|
||||
|
||||
pload MODELING
|
||||
|
||||
sphere s 1
|
||||
mkface f1 s 0 2*pi 0.785398163397448 1.5707963267949
|
||||
prism r1 f1 0 0 2
|
||||
savehistory h1
|
||||
set s1 [dump h1]
|
||||
if { !([regexp "0 Deleted" $s1] && [regexp "2 Generated" $s1])} {
|
||||
puts "Error: wrong history h1"
|
||||
}
|
||||
#
|
||||
mkface f2 s 0 5 0.785398163397448 1.5707963267949
|
||||
prism r2 f2 0 0 2
|
||||
savehistory h2
|
||||
set s2 [dump h2]
|
||||
if { !([regexp "0 Deleted" $s2] && [regexp "6 Generated" $s2])} {
|
||||
puts "Error: wrong history h2"
|
||||
}
|
@ -1,5 +1,3 @@
|
||||
puts "TODO OCC12345 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
|
||||
puts "================"
|
||||
puts "BUC61023"
|
||||
puts "OCC65"
|
||||
@ -14,7 +12,10 @@ checkshape sh
|
||||
|
||||
revol result sh 0 0 0 0 0 1 360
|
||||
|
||||
checkshape result
|
||||
explode result
|
||||
#result contains two shapes, one of them (result_2) is bad - empty shell
|
||||
#because of bad input data, so only result_1 is checked.
|
||||
checkshape result_1
|
||||
|
||||
checkprops result -s 1.0134e+06
|
||||
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
||||
|
Loading…
x
Reference in New Issue
Block a user