1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0029827: Modeling Data - TopoDS_Shape::Nullify() does not reset location

TopoDS_Shape::Nullify() nullify not only myTShape but myLocation and myOrient.
Nullified shapes are equal and same now.
Added test.
This commit is contained in:
akaftasev 2020-11-10 09:41:23 +03:00 committed by bugmaster
parent 026aec1860
commit 6e01c25ad1
5 changed files with 58 additions and 6 deletions

View File

@ -1327,11 +1327,6 @@ static Standard_Integer compareshapes(Draw_Interpretor& di,
// get shapes
TopoDS_Shape aS1 = DBRep::Get(a[1]);
TopoDS_Shape aS2 = DBRep::Get(a[2]);
// check shapes
if (aS1.IsNull() || aS2.IsNull()) {
di << "null shapes\n";
return 0;
}
// compare shapes
if (aS1.IsSame(aS2)) {
di << "same shapes\n";

View File

@ -3870,6 +3870,21 @@ static Standard_Integer OCC31785 (Draw_Interpretor& theDI,
return 0;
}
static Standard_Integer QANullifyShape(Draw_Interpretor& di,
Standard_Integer n,
const char** a)
{
if (n != 2) {
di << "Wrong usage.\n";
di << "Usage: QANullifyShape shape\n";
return 1;
}
TopoDS_Shape aShape = DBRep::Get(a[1]);
aShape.Nullify();
DBRep::Set(a[1], aShape);
return 0;
}
void QABugs::Commands_20(Draw_Interpretor& theCommands) {
const char *group = "QABugs";
@ -3945,5 +3960,10 @@ void QABugs::Commands_20(Draw_Interpretor& theCommands) {
"OCC31785 file.xbf : test reading XBF file in another thread",
__FILE__, OCC31785, group);
theCommands.Add("QANullifyShape",
"Nullify shape. Usage: QANullifyShape shape",
__FILE__, QANullifyShape, group);
return;
}

View File

@ -148,6 +148,12 @@ Standard_Boolean operator != (const TopLoc_Location& Other) const
//! Prints the contents of <me> on the stream <s>.
Standard_EXPORT void ShallowDump (Standard_OStream& S) const;
//! Clear myItems
void Clear()
{
myItems.Clear();
}

View File

@ -80,7 +80,12 @@ public:
//! Destroys the reference to the underlying shape
//! stored in this shape. As a result, this shape becomes null.
void Nullify() { myTShape.Nullify(); }
void Nullify()
{
myTShape.Nullify();
myLocation.Clear();
myOrient = TopAbs_EXTERNAL;
}
//! Returns the shape local coordinate system.
const TopLoc_Location& Location() const { return myLocation; }

View File

@ -0,0 +1,26 @@
puts "=========="
puts "0029827: Modeling Data - TopoDS_Shape::Nullify() does not reset location"
puts "=========="
puts ""
pload QAcommands
box b1 1 2 1
box b2 1 1 1
ttranslate b1 0 1 1
ttranslate b2 1 1 1
QANullifyShape b1
QANullifyShape b2
set result [compare b1 b2]
set ctr { "same shapes" "equal shapes" }
foreach data ${ctr} {
if ![regexp $data $result] {
puts "Error: Shapes are not '$data'"
break;
}
}