diff --git a/src/BRep/BRep_Tool.cxx b/src/BRep/BRep_Tool.cxx index 7e2f0f4208..5d308fc2e9 100644 --- a/src/BRep/BRep_Tool.cxx +++ b/src/BRep/BRep_Tool.cxx @@ -992,8 +992,8 @@ void BRep_Tool::UVPoints(const TopoDS_Edge& E, TopExp::Vertices(E,Vf,Vl); TopLoc_Location Linverted = L.Inverted(); - Vf.Move(Linverted); - Vl.Move(Linverted); + Vf.Move(Linverted, Standard_False); + Vl.Move(Linverted, Standard_False); Standard_Real u,v; gp_Pln pln = GP->Pln(); diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Transform.cxx b/src/BRepBuilderAPI/BRepBuilderAPI_Transform.cxx index 8c722fe550..8052e97e27 100644 --- a/src/BRepBuilderAPI/BRepBuilderAPI_Transform.cxx +++ b/src/BRepBuilderAPI/BRepBuilderAPI_Transform.cxx @@ -57,10 +57,7 @@ BRepBuilderAPI_Transform::BRepBuilderAPI_Transform (const TopoDS_Shape& S, void BRepBuilderAPI_Transform::Perform(const TopoDS_Shape& S, const Standard_Boolean Copy) { -// myUseModif = Copy || myTrsf.IsNegative(); bug gp_Trsf. - myUseModif = Copy || - myTrsf.ScaleFactor()*myTrsf.HVectorialPart().Determinant() < 0. || - Abs(Abs(myTrsf.ScaleFactor()) - 1) > gp::Resolution(); + myUseModif = Copy || myTrsf.IsNegative() || (Abs(Abs(myTrsf.ScaleFactor()) - 1.) > TopLoc_Location::ScalePrec()); if (myUseModif) { Handle(BRepTools_TrsfModification) theModif = Handle(BRepTools_TrsfModification)::DownCast(myModification); diff --git a/src/BRepLib/BRepLib.cxx b/src/BRepLib/BRepLib.cxx index 9079366ffc..18733f8563 100644 --- a/src/BRepLib/BRepLib.cxx +++ b/src/BRepLib/BRepLib.cxx @@ -1991,6 +1991,12 @@ public: theCurvature1 = -theCurvature1; theCurvature2 = -theCurvature2; } + if (mySurfaceTrsf.IsNegative()) + { + theCurvature1 = -theCurvature1; + theCurvature2 = -theCurvature2; + } + thePrincipalDir1.Transform(mySurfaceTrsf); thePrincipalDir2.Transform(mySurfaceTrsf); } diff --git a/src/BRepTest/BRepTest_BasicCommands.cxx b/src/BRepTest/BRepTest_BasicCommands.cxx index 0658307d05..aecc356a0c 100644 --- a/src/BRepTest/BRepTest_BasicCommands.cxx +++ b/src/BRepTest/BRepTest_BasicCommands.cxx @@ -56,7 +56,8 @@ #include #include #include - +#include +#include #include #include @@ -116,7 +117,7 @@ static Standard_Integer addpcurve(Draw_Interpretor& , Standard_Integer n, const // transform //======================================================================= -static Standard_Integer transform(Draw_Interpretor& ,Standard_Integer n,const char** a) +static Standard_Integer transform(Draw_Interpretor&,Standard_Integer n,const char** a) { if (n <= 1) return 1; @@ -125,6 +126,7 @@ static Standard_Integer transform(Draw_Interpretor& ,Standard_Integer n,const ch const char* aName = a[0]; Standard_Boolean isBasic = Standard_False; + Standard_Boolean isForced = Standard_False; Standard_Boolean isCopy = Standard_False; // Check "copy" flag. @@ -137,6 +139,8 @@ static Standard_Integer transform(Draw_Interpretor& ,Standard_Integer n,const ch } else { isBasic = (aName[0] == 'b'); + isForced = (aName[0] == 'f'); + aName++; if (!strcmp(aName,"move")) { @@ -145,6 +149,7 @@ static Standard_Integer transform(Draw_Interpretor& ,Standard_Integer n,const ch if (SL.IsNull()) return 0; T = SL.Location().Transformation(); last = n-1; + isBasic = Standard_True; } else if (!strcmp(aName,"translate")) { if (n < 5) return 1; @@ -162,6 +167,7 @@ static Standard_Integer transform(Draw_Interpretor& ,Standard_Integer n,const ch if (n < 8) return 1; T.SetMirror(gp_Ax2(gp_Pnt(Draw::Atof(a[n-6]),Draw::Atof(a[n-5]),Draw::Atof(a[n-4])), gp_Vec(Draw::Atof(a[n-3]),Draw::Atof(a[n-2]),Draw::Atof(a[n-1])))); + last = n-6; } else if (!strcmp(aName,"scale")) { @@ -171,7 +177,12 @@ static Standard_Integer transform(Draw_Interpretor& ,Standard_Integer n,const ch } } - if (T.Form() == gp_Identity || isBasic) { + if (T.Form() == gp_Identity || isBasic || isForced) { + Standard_Boolean isExeption = Standard_True; + if (isForced) + { + isExeption = Standard_False; + } TopLoc_Location L(T); for (Standard_Integer i = 1; i < last; i++) { TopoDS_Shape S = DBRep::Get(a[i]); @@ -181,7 +192,25 @@ static Standard_Integer transform(Draw_Interpretor& ,Standard_Integer n,const ch return 1; } else - DBRep::Set(a[i],S.Located(L)); + { + try + { + if (!strcmp(aName, "move") || !strcmp(aName, "reset")) + { + DBRep::Set(a[i], S.Located(L, isExeption)); + } + else + { + DBRep::Set(a[i], S.Moved(L, isExeption)); + } + } + catch (const Standard_DomainError&) + { + TCollection_AsciiString aScale(T.ScaleFactor()); + Message::SendWarning() << "Operation is not done: " << aName << " is not a valid transformation - scale = " << aScale; + return 0; + } + } } } else { @@ -1385,6 +1414,63 @@ static Standard_Integer issubshape(Draw_Interpretor& di, // return 0; } +//======================================================================= +//function : purgeloc +//purpose : +//======================================================================= +static Standard_Integer purgeloc(Draw_Interpretor& di, Standard_Integer /*n*/, const char** a) +{ + + TopoDS_Shape aShapeBase = DBRep::Get(a[2]); + if (aShapeBase.IsNull()) return 1; + + + BRepTools_PurgeLocations aRemLoc; + Standard_Boolean isDone = aRemLoc.Perform(aShapeBase); + TopoDS_Shape Result = aRemLoc.GetResult(); + + DBRep::Set(a[1], Result); + if (isDone) + { + di << "All problematic locations are purged \n"; + } + else + { + di << "Not all problematic locations are purged \n"; + } + return 0; +} +//======================================================================= +//function : checkloc +//purpose : +//======================================================================= + +static Standard_Integer checkloc(Draw_Interpretor& di, Standard_Integer /*n*/, const char** a) +{ + + TopoDS_Shape aShapeBase = DBRep::Get(a[1]); + if (aShapeBase.IsNull()) return 1; + + TopTools_ListOfShape aLS; + BRepTools::CheckLocations(aShapeBase, aLS); + if (aLS.IsEmpty()) + { + di << "There are no problematic shapes" << "\n"; + return 0; + } + TopTools_ListIteratorOfListOfShape anIt(aLS); + Standard_Integer i; + for (i = 1; anIt.More(); anIt.Next(), ++i) + { + TCollection_AsciiString aName(a[1]); + aName += "_"; + aName.AssignCat(i); + DBRep::Set(aName.ToCString(), anIt.Value()); + di << aName << " "; + } + di << "\n"; + return 0; +} void BRepTest::BasicCommands(Draw_Interpretor& theCommands) { @@ -1441,6 +1527,11 @@ void BRepTest::BasicCommands(Draw_Interpretor& theCommands) __FILE__, transform,g); + theCommands.Add("fmove", + "fmove name1 name2 ... name, set location from name", + __FILE__, + transform, g); + theCommands.Add("btranslate", "btranslate name1 name2 ... dx dy dz", __FILE__, @@ -1456,11 +1547,21 @@ void BRepTest::BasicCommands(Draw_Interpretor& theCommands) __FILE__, transform,g); + theCommands.Add("fmirror", + "fmirror name x y z dx dy dz", + __FILE__, + transform, g); + theCommands.Add("bscale", "bscale name x y z scale", __FILE__, transform,g); + theCommands.Add("fscale", + "fscale name x y z scale", + __FILE__, + transform, g); + theCommands.Add("precision", "precision [preci]", __FILE__, @@ -1593,4 +1694,13 @@ void BRepTest::BasicCommands(Draw_Interpretor& theCommands) "\t\tCheck if the shape is sub-shape of other shape and get its index in the shape.", __FILE__, issubshape, g); + theCommands.Add("purgeloc", + "purgeloc res shape ", + __FILE__, + purgeloc, g); + + theCommands.Add("checkloc", + "checkloc shape ", + __FILE__, + checkloc, g); } diff --git a/src/BRepTools/BRepTools.cxx b/src/BRepTools/BRepTools.cxx index 8f0c3b3094..99b3828d6f 100644 --- a/src/BRepTools/BRepTools.cxx +++ b/src/BRepTools/BRepTools.cxx @@ -65,6 +65,9 @@ #include #include #include +#include +#include +#include //======================================================================= @@ -1518,3 +1521,33 @@ void BRepTools::RemoveInternals (TopoDS_Shape& theS, removeInternals (theS, pMKeep); } + +//======================================================================= +//function : CheckLocations +//purpose : +//======================================================================= + +void BRepTools::CheckLocations(const TopoDS_Shape& theS, + TopTools_ListOfShape& theProblemShapes) +{ + if (theS.IsNull()) return; + + TopTools_IndexedMapOfShape aMapS; + TopExp::MapShapes(theS, aMapS, Standard_False, Standard_False); + + Standard_Integer i; + for (i = 1; i <= aMapS.Extent(); ++i) + { + const TopoDS_Shape& anS = aMapS(i); + const TopLoc_Location& aLoc = anS.Location(); + const gp_Trsf& aTrsf = aLoc.Transformation(); + Standard_Boolean isBadTrsf = aTrsf.IsNegative() || + (Abs(Abs(aTrsf.ScaleFactor()) - 1.) > TopLoc_Location::ScalePrec()); + + if (isBadTrsf) + { + theProblemShapes.Append(anS); + } + } + +} \ No newline at end of file diff --git a/src/BRepTools/BRepTools.hxx b/src/BRepTools/BRepTools.hxx index babe873967..968fd90dae 100644 --- a/src/BRepTools/BRepTools.hxx +++ b/src/BRepTools/BRepTools.hxx @@ -29,6 +29,7 @@ #include #include #include +#include class TopoDS_Face; class TopoDS_Wire; @@ -358,9 +359,14 @@ public: //! removal is not going to break topological connectivity between sub-shapes. //! The flag if set to true disables the connectivity check and clears //! the given shape from all sub-shapes with internal orientation. - Standard_EXPORT static void RemoveInternals (TopoDS_Shape& theS, - const Standard_Boolean theForce = Standard_False); + Standard_EXPORT static void RemoveInternals(TopoDS_Shape& theS, + const Standard_Boolean theForce = Standard_False); + //! Check all locations of shape according criterium: + //! aTrsf.IsNegative() || (Abs(Abs(aTrsf.ScaleFactor()) - 1.) > TopLoc_Location::ScalePrec()) + //! All sub-shapes having such locations are put in list theProblemShapes + Standard_EXPORT static void CheckLocations(const TopoDS_Shape& theS, + TopTools_ListOfShape& theProblemShapes); protected: diff --git a/src/BRepTools/BRepTools_Modifier.cxx b/src/BRepTools/BRepTools_Modifier.cxx index deeb1ee537..f4cf6f39c2 100644 --- a/src/BRepTools/BRepTools_Modifier.cxx +++ b/src/BRepTools/BRepTools_Modifier.cxx @@ -272,7 +272,7 @@ Standard_Boolean BRepTools_Modifier::Rebuild RevWires = aNSinfo.myRevWires; B.MakeFace(TopoDS::Face(result),aNSinfo.mySurface, aNSinfo.myLoc.Predivided(S.Location()),aNSinfo.myToler); - result.Location(S.Location()); + result.Location(S.Location(), Standard_False); if (aNSinfo.myRevFace) ResOr = TopAbs_REVERSED; // set specifics flags of a Face @@ -288,7 +288,7 @@ Standard_Boolean BRepTools_Modifier::Rebuild else { // create new face with bare triangulation B.MakeFace(TopoDS::Face(result), aTriangulation); - result.Location(S.Location()); + result.Location(S.Location(), Standard_False); } rebuild = Standard_True; } @@ -313,7 +313,7 @@ Standard_Boolean BRepTools_Modifier::Rebuild aNCinfo.myLoc.Predivided(S.Location()),aNCinfo.myToler); No3DCurve = Standard_False; } - result.Location(S.Location()); + result.Location(S.Location(), Standard_False); // result.Orientation(S.Orientation()); // set specifics flags of an Edge @@ -332,7 +332,7 @@ Standard_Boolean BRepTools_Modifier::Rebuild else { // create new edge with bare polygon B.MakeEdge(TopoDS::Edge(result), aPolygon); - result.Location(S.Location()); + result.Location(S.Location(), Standard_False); } rebuild = Standard_True; } diff --git a/src/BRepTools/BRepTools_PurgeLocations.cxx b/src/BRepTools/BRepTools_PurgeLocations.cxx new file mode 100644 index 0000000000..1bc807ac29 --- /dev/null +++ b/src/BRepTools/BRepTools_PurgeLocations.cxx @@ -0,0 +1,220 @@ +// Copyright (c) 2021 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + +#include +#include +#include +#include +#include +#include +#include +#include + +//======================================================================= +//function : BRepTools_PurgeLocations +//purpose : +//======================================================================= +BRepTools_PurgeLocations::BRepTools_PurgeLocations() : + myDone(Standard_False) +{ +} + +//======================================================================= +//function : Perform +//purpose : +//======================================================================= + +Standard_Boolean BRepTools_PurgeLocations::Perform(const TopoDS_Shape& theShape) +{ + myShape = theShape; + myMapShapes.Clear(); + myLocations.Clear(); + myDone = Standard_True; + AddShape(myShape); + + //Check locations; + Standard_Integer ind; + NCollection_Vector aBadTrsfInds; + for (ind = 1; ; ++ind) + { + const TopLoc_Location& aLoc = myLocations.Location(ind); + + if (aLoc.IsIdentity()) + break; + + const gp_Trsf& aTrsf = aLoc.Transformation(); + Standard_Boolean isBadTrsf = aTrsf.IsNegative() || + (Abs(Abs(aTrsf.ScaleFactor()) - 1.) > TopLoc_Location::ScalePrec()); + if (isBadTrsf) + { + aBadTrsfInds.Append(ind); + } + } + + if (aBadTrsfInds.IsEmpty()) + { + return myDone; + } + + Standard_Integer aNbShapes = myMapShapes.Extent(); + myMapNewShapes.Clear(); + Standard_Integer inds; + for (inds = 1; inds <= aNbShapes; ++inds) + { + const TopoDS_Shape& anS = myMapShapes(inds); + Standard_Integer aLocInd = myLocations.Index(anS.Location()); + if(aLocInd == 0) + { + continue; + } + Standard_Integer il; + for (il = 0; il < aBadTrsfInds.Size(); ++il) + { + if (aBadTrsfInds(il) == aLocInd) + { + TopoDS_Shape aTrS; + Standard_Boolean isDone = PurgeLocation(anS, aTrS); + myDone = myDone && isDone; + myMapNewShapes.Bind(anS, aTrS); + break; + } + + } + } + + if (myReShape.IsNull()) + { + myReShape = new BRepTools_ReShape; + } + else + { + myReShape->Clear(); + } + TopTools_DataMapIteratorOfDataMapOfShapeShape anIter(myMapNewShapes); + for (; anIter.More(); anIter.Next()) + { + const TopoDS_Shape& anOldS = anIter.Key(); + const TopoDS_Shape& aNewS = anIter.Value(); + myReShape->Replace(anOldS, aNewS); + } + + myShape = myReShape->Apply(myShape); + + return myDone; + +} + +//======================================================================= +//function : PurgeLocation +//purpose : +//======================================================================= + +Standard_Boolean BRepTools_PurgeLocations::PurgeLocation(const TopoDS_Shape& theS, TopoDS_Shape& theRes) +{ + Standard_Boolean isDone = Standard_True; + TopLoc_Location aRefLoc = theS.Location(); + Standard_Boolean isEmpty = aRefLoc.IsIdentity(); + if (isEmpty) + { + theRes = theS; + return isDone; + } + + TopLoc_Location aNullLoc; + theRes = theS.Located(aNullLoc); + + while (!isEmpty) + { + const Handle(TopLoc_Datum3D)& aFD = aRefLoc.FirstDatum(); + gp_Trsf aTrsf = aFD->Trsf(); + Standard_Integer aFP = aRefLoc.FirstPower(); + Standard_Boolean isBad = aTrsf.IsNegative() || (Abs(Abs(aTrsf.ScaleFactor()) - 1.) > TopLoc_Location::ScalePrec()); + TopLoc_Location aLoc(aFD); + aLoc = aLoc.Powered(aFP); + aTrsf = aLoc.Transformation(); + if (isBad) + { + Handle(BRepTools_TrsfModification) aModification = new BRepTools_TrsfModification(aTrsf); + BRepTools_Modifier aModifier(theRes, aModification); + if (aModifier.IsDone()) + { + theRes = aModifier.ModifiedShape(theRes); + } + else + { + isDone = Standard_False; + theRes = theRes.Moved(aLoc); + } + } + else + { + theRes = theRes.Moved(aLoc); + } + + aRefLoc = aRefLoc.NextLocation(); + isEmpty = aRefLoc.IsIdentity(); + } + + return isDone; +} + +//======================================================================= +//function : AddShape +//purpose : +//======================================================================= + +void BRepTools_PurgeLocations::AddShape(const TopoDS_Shape& theS) +{ + myMapShapes.Add(theS); + myLocations.Add(theS.Location()); + + TopoDS_Iterator It(theS, Standard_False, Standard_False); + while (It.More()) { + AddShape(It.Value()); + It.Next(); + } +} + +//======================================================================= +//function : GetResult +//purpose : +//======================================================================= + +const TopoDS_Shape& BRepTools_PurgeLocations::GetResult() const +{ + return myShape; +} + +//======================================================================= +//function : IsDone +//purpose : +//======================================================================= + +Standard_Boolean BRepTools_PurgeLocations::IsDone() const +{ + return myDone; +} + +//======================================================================= +//function : ModifiedShape +//purpose : +//======================================================================= + +TopoDS_Shape BRepTools_PurgeLocations::ModifiedShape(const TopoDS_Shape& theInitShape) const +{ + TopoDS_Shape aShape = theInitShape; + if (myMapNewShapes.IsBound(theInitShape)) + aShape = myMapNewShapes.Find(theInitShape); + return aShape; +} + diff --git a/src/BRepTools/BRepTools_PurgeLocations.hxx b/src/BRepTools/BRepTools_PurgeLocations.hxx new file mode 100644 index 0000000000..4f63283be9 --- /dev/null +++ b/src/BRepTools/BRepTools_PurgeLocations.hxx @@ -0,0 +1,62 @@ +// Copyright (c) 2021 OPEN CASCADE SAS +// +// This file is part of Open CASCADE Technology software library. +// +// This library is free software; you can redistribute it and/or modify it under +// the terms of the GNU Lesser General Public License version 2.1 as published +// by the Free Software Foundation, with special exception defined in the file +// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT +// distribution for complete text of the license and disclaimer of any warranty. +// +// Alternatively, this file may be used under the terms of Open CASCADE +// commercial license or contractual agreement. + +#ifndef _BRepTools_PurgeLocations_HeaderFile +#define _BRepTools_PurgeLocations_HeaderFile + +#include +#include +#include +#include +#include + +class TopoDS_Shape; + +class BRepTools_PurgeLocations; + +//! Removes location datums, which satisfy conditions: +//! aTrsf.IsNegative() || (Abs(Abs(aTrsf.ScaleFactor()) - 1.) > TopLoc_Location::ScalePrec()) +//! from all locations of shape and its subshapes +class BRepTools_PurgeLocations +{ + +public: + + Standard_EXPORT BRepTools_PurgeLocations(); + + //! Removes all locations correspodingly to criterium from theShape. + Standard_EXPORT Standard_Boolean Perform(const TopoDS_Shape& theShape); + + //! Returns shape with removed locations. + Standard_EXPORT const TopoDS_Shape& GetResult() const; + + Standard_EXPORT Standard_Boolean IsDone() const; + + //! Returns modified shape obtained from initial shape. + TopoDS_Shape ModifiedShape(const TopoDS_Shape& theInitShape) const; + +private: + + void AddShape(const TopoDS_Shape& theS); + Standard_Boolean PurgeLocation(const TopoDS_Shape& theS, TopoDS_Shape& theRes); + + Standard_Boolean myDone; + TopoDS_Shape myShape; + TopTools_IndexedMapOfShape myMapShapes; + TopTools_LocationSet myLocations; + TopTools_DataMapOfShapeShape myMapNewShapes; + Handle(BRepTools_ReShape) myReShape; + +}; + +#endif // _BRepTools_PurgeLocations_HeaderFile diff --git a/src/BRepTools/BRepTools_ReShape.cxx b/src/BRepTools/BRepTools_ReShape.cxx index 4eb968edac..63c00a0331 100644 --- a/src/BRepTools/BRepTools_ReShape.cxx +++ b/src/BRepTools/BRepTools_ReShape.cxx @@ -174,7 +174,7 @@ void BRepTools_ReShape::replace (const TopoDS_Shape& ashape, if (myConsiderLocation) { //sln 29.11.01 Bug22: Change location of 'newshape' in accordance with location of 'shape' - newshape.Location(newshape.Location().Multiplied(shape.Location().Inverted())); + newshape.Location(newshape.Location().Multiplied(shape.Location().Inverted()), Standard_False); TopLoc_Location nullLoc; shape.Location ( nullLoc ); } @@ -243,8 +243,8 @@ TopoDS_Shape BRepTools_ReShape::Value (const TopoDS_Shape& ashape) const if (myConsiderLocation) { //sln 29.11.01 Bug22: Recalculate location of resulting shape in accordance with //whether result is from map or not - if(fromMap) res.Location(ashape.Location()*res.Location()); - else res.Location(ashape.Location()); + if(fromMap) res.Location(ashape.Location()*res.Location(), Standard_False); + else res.Location(ashape.Location(), Standard_False); } return res; @@ -300,7 +300,7 @@ Standard_Integer BRepTools_ReShape::Status(const TopoDS_Shape& ashape, { TopLoc_Location aResLoc = (res >0 && !newsh.Location().IsIdentity() ? aLocSh * newsh.Location() : aLocSh); - newsh.Location(aResLoc); + newsh.Location(aResLoc, Standard_False); } return res; } diff --git a/src/BRepTools/FILES b/src/BRepTools/FILES index bebdc4807e..60a0c86804 100644 --- a/src/BRepTools/FILES +++ b/src/BRepTools/FILES @@ -26,3 +26,5 @@ BRepTools_TrsfModification.cxx BRepTools_TrsfModification.hxx BRepTools_WireExplorer.cxx BRepTools_WireExplorer.hxx +BRepTools_PurgeLocations.cxx +BRepTools_PurgeLocations.hxx \ No newline at end of file diff --git a/src/BinTools/BinTools_ShapeReader.cxx b/src/BinTools/BinTools_ShapeReader.cxx index bf23f99169..c797b4f0b7 100644 --- a/src/BinTools/BinTools_ShapeReader.cxx +++ b/src/BinTools/BinTools_ShapeReader.cxx @@ -90,7 +90,7 @@ TopoDS_Shape BinTools_ShapeReader::ReadShape (BinTools_IStream& theStream) aResult = ReadShape (theStream); theStream.GoTo (aCurrent); // returns to the current position } - aResult.Location (*ReadLocation (theStream)); + aResult.Location (*ReadLocation (theStream), Standard_False); aResult.Orientation (TopAbs_Orientation (theStream.ReadByte())); return aResult; } @@ -323,7 +323,7 @@ TopoDS_Shape BinTools_ShapeReader::ReadShape (BinTools_IStream& theStream) aResult.Convex (aConv); myShapePos.Bind (aPosition, aResult); aResult.Orientation (aShapeOrientation); - aResult.Location (*aShapeLocation); + aResult.Location (*aShapeLocation, Standard_False); return aResult; } diff --git a/src/BinTools/BinTools_ShapeSet.cxx b/src/BinTools/BinTools_ShapeSet.cxx index 19f4a7b03a..5df9100a2d 100644 --- a/src/BinTools/BinTools_ShapeSet.cxx +++ b/src/BinTools/BinTools_ShapeSet.cxx @@ -526,7 +526,7 @@ void BinTools_ShapeSet::ReadSubs(TopoDS_Shape& S, Standard_IStream& IS, Standard_Integer l; BinTools::GetInteger(IS, l); - S.Location(myLocations.Location(l)); + S.Location(myLocations.Location(l), Standard_False); } } diff --git a/src/IGESCAFControl/IGESCAFControl_Writer.cxx b/src/IGESCAFControl/IGESCAFControl_Writer.cxx index a67ad2b836..81802e8a22 100644 --- a/src/IGESCAFControl/IGESCAFControl_Writer.cxx +++ b/src/IGESCAFControl/IGESCAFControl_Writer.cxx @@ -102,7 +102,7 @@ namespace { TopoDS_Shape aShape; if (!XCAFDoc_ShapeTool::GetShape (theLabel, aShape)) return; - aShape.Move (theLocation); + aShape.Move (theLocation, Standard_False); theMapOfShapeNames.Bind (aShape, thePrevName->Get()); } } diff --git a/src/IGESToBRep/IGESToBRep_CurveAndSurface.cxx b/src/IGESToBRep/IGESToBRep_CurveAndSurface.cxx index f04f750f72..70a41e7f51 100644 --- a/src/IGESToBRep/IGESToBRep_CurveAndSurface.cxx +++ b/src/IGESToBRep/IGESToBRep_CurveAndSurface.cxx @@ -514,7 +514,7 @@ TopoDS_Shape IGESToBRep_CurveAndSurface::TransferGeometry T.SetScaleFactor(sc); } TopLoc_Location L(T); - res.Move(L); + res.Move(L, Standard_False); } else { Message_Msg msg1035("IGES_1035"); diff --git a/src/IGESToBRep/IGESToBRep_TopoSurface.cxx b/src/IGESToBRep/IGESToBRep_TopoSurface.cxx index 41db4bd86b..de7552ea70 100644 --- a/src/IGESToBRep/IGESToBRep_TopoSurface.cxx +++ b/src/IGESToBRep/IGESToBRep_TopoSurface.cxx @@ -325,7 +325,7 @@ TopoDS_Shape IGESToBRep_TopoSurface::TransferTopoBasicSurface if (IGESData_ToolLocation::ConvertLocation (GetEpsilon(),st->CompoundLocation(),trsf,GetUnitFactor())) { TopLoc_Location locFace(trsf); - res.Move(locFace); + res.Move(locFace, Standard_False); } else { Message_Msg msg1035("IGES_1035"); @@ -651,7 +651,7 @@ TopoDS_Shape IGESToBRep_TopoSurface::TransferRuledSurface if (IGESData_ToolLocation::ConvertLocation (GetEpsilon(),st->CompoundLocation(), trsf,GetUnitFactor())) { TopLoc_Location shapeLoc(trsf); - res.Move(shapeLoc); + res.Move(shapeLoc, Standard_False); } else { Message_Msg msg1035("IGES_1035"); @@ -819,7 +819,7 @@ TopoDS_Shape IGESToBRep_TopoSurface::TransferSurfaceOfRevolution if (IGESData_ToolLocation::ConvertLocation (GetEpsilon(), st->CompoundLocation(), trsf, GetUnitFactor())) { TopLoc_Location shapeLoc(trsf); - res.Move(shapeLoc); + res.Move(shapeLoc, Standard_False); } else { Message_Msg msg1035("IGES_1035"); @@ -959,7 +959,7 @@ TopoDS_Shape IGESToBRep_TopoSurface::TransferTabulatedCylinder if (IGESData_ToolLocation::ConvertLocation (GetEpsilon(),st->CompoundLocation(), trsf, GetUnitFactor())) { TopLoc_Location shapeLoc(trsf); - res.Move(shapeLoc); + res.Move(shapeLoc, Standard_False); } else { Message_Msg msg1035("IGES_1035"); @@ -1115,7 +1115,7 @@ TopoDS_Shape IGESToBRep_TopoSurface::TransferOffsetSurface if (IGESData_ToolLocation::ConvertLocation (GetEpsilon(),st->CompoundLocation(),trsf, GetUnitFactor())) { TopLoc_Location loc2(trsf); - res.Move(loc2); + res.Move(loc2, Standard_False); } else { Message_Msg msg1035("IGES_1035"); @@ -1256,7 +1256,7 @@ TopoDS_Shape IGESToBRep_TopoSurface::TransferTrimmedSurface aMat.Value(2, 1), aMat.Value(2, 2), aMat.Value(2, 3), aTrans.Y(), aMat.Value(3, 1), aMat.Value(3, 2), aMat.Value(3, 3), aTrans.Z()); TopLoc_Location aLoc(aT); - face.Move(aLoc); + face.Move(aLoc, Standard_False); } } } @@ -1399,7 +1399,7 @@ TopoDS_Shape IGESToBRep_TopoSurface::TransferPlane // il reste a la mettre en position if (trsf.Form() != gp_Identity) { TopLoc_Location loc(trsf); - res.Location(loc); + res.Location(loc, Standard_False); } return res; } @@ -1476,14 +1476,14 @@ TopoDS_Shape IGESToBRep_TopoSurface::TransferPerforate // Ne pas oublier de composer la transformation locale a ce Wire if (trsi.Form() != gp_Identity) { TopLoc_Location locw(trsi); - wire.Location(locw); + wire.Location(locw, Standard_False); } B.Add (res,wire); } // Enfin, appliquer la trsf globale if (trsf.Form() != gp_Identity) { TopLoc_Location loc(trsf); - res.Location(loc); + res.Location(loc, Standard_False); } return res; } diff --git a/src/RWGltf/RWGltf_GltfJsonParser.cxx b/src/RWGltf/RWGltf_GltfJsonParser.cxx index c082c5c7b5..c1bb4911c8 100644 --- a/src/RWGltf/RWGltf_GltfJsonParser.cxx +++ b/src/RWGltf/RWGltf_GltfJsonParser.cxx @@ -1865,11 +1865,11 @@ void RWGltf_GltfJsonParser::bindNamedShape (TopoDS_Shape& theShape, { if (!theShape.Location().IsIdentity()) { - theShape.Location (theLoc * theShape.Location()); + theShape.Location (theLoc * theShape.Location(), Standard_False); } else { - theShape.Location (theLoc); + theShape.Location (theLoc, Standard_False); } } diff --git a/src/RWMesh/RWMesh_CafReader.cxx b/src/RWMesh/RWMesh_CafReader.cxx index a5df98a8c8..eb10ed2230 100644 --- a/src/RWMesh/RWMesh_CafReader.cxx +++ b/src/RWMesh/RWMesh_CafReader.cxx @@ -305,7 +305,7 @@ Standard_Boolean RWMesh_CafReader::addShapeIntoDoc (CafDocumentTools& theTools, TopoDS_Compound aCompound; BRep_Builder aBuilder; aBuilder.MakeCompound (aCompound); - aCompound.Location (theShape.Location()); + aCompound.Location (theShape.Location(), Standard_False); aShapeToAdd = aCompound; } } diff --git a/src/ShapeCustom/ShapeCustom.cxx b/src/ShapeCustom/ShapeCustom.cxx index 83188af68e..757784971b 100644 --- a/src/ShapeCustom/ShapeCustom.cxx +++ b/src/ShapeCustom/ShapeCustom.cxx @@ -76,7 +76,7 @@ TopoDS_Shape ShapeCustom::ApplyModifier (const TopoDS_Shape &S, context.Bind ( shape, res ); locModified = Standard_True; } - res.Location ( L ); + res.Location ( L, Standard_False ); B.Add ( C, res ); } diff --git a/src/ShapeFix/ShapeFix_Shape.cxx b/src/ShapeFix/ShapeFix_Shape.cxx index 60da7f063e..55df4bba7e 100644 --- a/src/ShapeFix/ShapeFix_Shape.cxx +++ b/src/ShapeFix/ShapeFix_Shape.cxx @@ -120,14 +120,14 @@ Standard_Boolean ShapeFix_Shape::Perform(const Message_ProgressRange& theProgres TopoDS_Shape aShapeNullLoc = myShape; aShapeNullLoc.Location(nullLoc); if(myMapFixingShape.Contains(aShapeNullLoc)) { - myShape.Location(L); + myShape.Location(L, Standard_False); myResult = Context()->Apply(myShape); status = Standard_True; return status; } else myMapFixingShape.Add(aShapeNullLoc); //--------------------------------------- - myShape.Location(L); + myShape.Location(L, Standard_False); TopoDS_Shape S = Context()->Apply(myShape); if ( NeedFix ( myFixVertexPositionMode ) ) ShapeFix::FixVertexPosition(S,Precision(),Context()); diff --git a/src/ShapeProcess/ShapeProcess_OperLibrary.cxx b/src/ShapeProcess/ShapeProcess_OperLibrary.cxx index e6c9564cbe..ede8305a68 100644 --- a/src/ShapeProcess/ShapeProcess_OperLibrary.cxx +++ b/src/ShapeProcess/ShapeProcess_OperLibrary.cxx @@ -86,7 +86,7 @@ TopoDS_Shape ShapeProcess_OperLibrary::ApplyModifier (const TopoDS_Shape &S, map.Bind ( shape, res ); } if ( ! res.IsSame ( shape ) ) locModified = Standard_True; - res.Location ( L ); + res.Location ( L, Standard_False ); B.Add ( C, res ); } if ( ! locModified ) return S; diff --git a/src/ShapeProcess/ShapeProcess_ShapeContext.cxx b/src/ShapeProcess/ShapeProcess_ShapeContext.cxx index 53381db5b4..135f14b36c 100644 --- a/src/ShapeProcess/ShapeProcess_ShapeContext.cxx +++ b/src/ShapeProcess/ShapeProcess_ShapeContext.cxx @@ -190,8 +190,8 @@ static void RecModif (const TopoDS_Shape &S, if ( ! r.IsNull() ) { TopoDS_Shape res = r; - if ( repl.IsBound ( r.Located(aShLoc) ) ) { - res = repl.Find ( r.Located(aShLoc) ); + if ( repl.IsBound ( r.Located(aShLoc, Standard_False) ) ) { + res = repl.Find ( r.Located(aShLoc, Standard_False) ); // it is supposed that map is created for r having FORWARD orientation // hence, if it is reversed, result should be reversed too // INTERNAL or EXTERNAL orientations are not allowed @@ -330,7 +330,7 @@ void ShapeProcess_ShapeContext::RecordModification (const Handle(ShapeBuild_ReSh if ( myMap.IsBound(myShape) ) { myResult = myMap.Find ( myShape ); - myResult.Location(myShape.Location()); + myResult.Location(myShape.Location(), Standard_False); } #ifdef OCCT_DEBUG // std::cout << "ReShape: " << std::endl; DumpMap (myMap); diff --git a/src/StepToGeom/StepToGeom.cxx b/src/StepToGeom/StepToGeom.cxx index ec9e51b084..9c4a0f7f92 100644 --- a/src/StepToGeom/StepToGeom.cxx +++ b/src/StepToGeom/StepToGeom.cxx @@ -1231,11 +1231,16 @@ Handle(Geom_Direction) StepToGeom::MakeDirection (const Handle(StepGeom_Directio const Standard_Real X = SD->DirectionRatiosValue(1); const Standard_Real Y = SD->DirectionRatiosValue(2); const Standard_Real Z = SD->DirectionRatiosValue(3); + //5.08.2021. Unstable test bugs xde bug24759: Y is very large value - FPE in SquareModulus + if (Precision::IsInfinite(X) || Precision::IsInfinite(Y) || Precision::IsInfinite(Z)) + { + return 0; + } // sln 22.10.2001. CTS23496: Direction is not created if it has null magnitude if (gp_XYZ(X, Y, Z).SquareModulus() > gp::Resolution()*gp::Resolution()) { return new Geom_Direction(X, Y, Z); - } + } } return 0; } diff --git a/src/TopExp/TopExp.cxx b/src/TopExp/TopExp.cxx index 58dc97ce32..c5f2eb44ff 100644 --- a/src/TopExp/TopExp.cxx +++ b/src/TopExp/TopExp.cxx @@ -52,10 +52,11 @@ void TopExp::MapShapes(const TopoDS_Shape& S, //======================================================================= void TopExp::MapShapes(const TopoDS_Shape& S, - TopTools_IndexedMapOfShape& M) + TopTools_IndexedMapOfShape& M, + const Standard_Boolean cumOri, const Standard_Boolean cumLoc) { M.Add(S); - TopoDS_Iterator It(S); + TopoDS_Iterator It(S, cumOri, cumLoc); while (It.More()) { MapShapes(It.Value(),M); It.Next(); @@ -67,11 +68,13 @@ void TopExp::MapShapes(const TopoDS_Shape& S, //purpose : //======================================================================= void TopExp::MapShapes(const TopoDS_Shape& S, - TopTools_MapOfShape& M) + TopTools_MapOfShape& M, + const Standard_Boolean cumOri, const Standard_Boolean cumLoc) { M.Add(S); - for (TopoDS_Iterator it(S); it.More(); it.Next()) - MapShapes(it.Value(), M); + TopoDS_Iterator It(S, cumOri, cumLoc); + for (; It.More(); It.Next()) + MapShapes(It.Value(), M); } //======================================================================= diff --git a/src/TopExp/TopExp.hxx b/src/TopExp/TopExp.hxx index e6e515e387..c2961ed738 100644 --- a/src/TopExp/TopExp.hxx +++ b/src/TopExp/TopExp.hxx @@ -58,10 +58,22 @@ public: Standard_EXPORT static void MapShapes (const TopoDS_Shape& S, const TopAbs_ShapeEnum T, TopTools_IndexedMapOfShape& M); //! Stores in the map all the sub-shapes of . - Standard_EXPORT static void MapShapes (const TopoDS_Shape& S, TopTools_IndexedMapOfShape& M); + //! - If cumOri is true, the function composes all + //! sub-shapes with the orientation of S. + //! - If cumLoc is true, the function multiplies all + //! sub-shapes by the location of S, i.e. it applies to + //! each sub-shape the transformation that is associated with S. + Standard_EXPORT static void MapShapes (const TopoDS_Shape& S, TopTools_IndexedMapOfShape& M, + const Standard_Boolean cumOri = Standard_True, const Standard_Boolean cumLoc = Standard_True); //! Stores in the map all the sub-shapes of . - Standard_EXPORT static void MapShapes (const TopoDS_Shape& S, TopTools_MapOfShape& M); + //! - If cumOri is true, the function composes all + //! sub-shapes with the orientation of S. + //! - If cumLoc is true, the function multiplies all + //! sub-shapes by the location of S, i.e. it applies to + //! each sub-shape the transformation that is associated with S. + Standard_EXPORT static void MapShapes (const TopoDS_Shape& S, TopTools_MapOfShape& M, + const Standard_Boolean cumOri = Standard_True, const Standard_Boolean cumLoc = Standard_True); //! Stores in the map all the subshape of of //! type for each one append to the list all diff --git a/src/TopLoc/TopLoc_Location.hxx b/src/TopLoc/TopLoc_Location.hxx index 002a0346a5..cc953d7f46 100644 --- a/src/TopLoc/TopLoc_Location.hxx +++ b/src/TopLoc/TopLoc_Location.hxx @@ -31,7 +31,6 @@ class Standard_ConstructionError; class gp_Trsf; class TopLoc_Datum3D; - //! A Location is a composite transition. It comprises a //! series of elementary reference coordinates, i.e. //! objects of type TopLoc_Datum3D, and the powers to @@ -156,7 +155,10 @@ Standard_Boolean operator != (const TopLoc_Location& Other) const } - + static Standard_Real ScalePrec() + { + return 1.e-14; + } protected: diff --git a/src/TopTools/TopTools_ShapeSet.cxx b/src/TopTools/TopTools_ShapeSet.cxx index be91dcf712..62d6553ca1 100644 --- a/src/TopTools/TopTools_ShapeSet.cxx +++ b/src/TopTools/TopTools_ShapeSet.cxx @@ -814,7 +814,7 @@ void TopTools_ShapeSet::Read(TopoDS_Shape& S, Standard_Integer l; IS >> l; - S.Location(myLocations.Location(l)); + S.Location(myLocations.Location(l), Standard_False); } } diff --git a/src/TopoDS/TopoDS_Builder.cxx b/src/TopoDS/TopoDS_Builder.cxx index b27b941ed0..a0c946a00b 100644 --- a/src/TopoDS/TopoDS_Builder.cxx +++ b/src/TopoDS/TopoDS_Builder.cxx @@ -105,7 +105,7 @@ void TopoDS_Builder::Add (TopoDS_Shape& aShape, // and the Relative Location const TopLoc_Location& aLoc=aShape.Location(); if (!aLoc.IsIdentity()) - S.Move(aLoc.Inverted()); + S.Move(aLoc.Inverted(), Standard_False); // // Set the TShape as modified. aShape.TShape()->Modified(Standard_True); @@ -135,7 +135,7 @@ void TopoDS_Builder::Remove (TopoDS_Shape& aShape, TopoDS_Shape S = aComponent; if (aShape.Orientation() == TopAbs_REVERSED) S.Reverse(); - S.Location(S.Location().Predivided(aShape.Location())); + S.Location(S.Location().Predivided(aShape.Location()), Standard_False); TopoDS_ListOfShape& L = aShape.TShape()->myShapes; TopoDS_ListIteratorOfListOfShape It(L); diff --git a/src/TopoDS/TopoDS_Iterator.cxx b/src/TopoDS/TopoDS_Iterator.cxx index ca51b61d00..141711a020 100644 --- a/src/TopoDS/TopoDS_Iterator.cxx +++ b/src/TopoDS/TopoDS_Iterator.cxx @@ -47,7 +47,7 @@ void TopoDS_Iterator::Initialize(const TopoDS_Shape& S, myShape = myShapes.Value(); myShape.Orientation(TopAbs::Compose(myOrientation,myShape.Orientation())); if (!myLocation.IsIdentity()) - myShape.Move(myLocation); + myShape.Move(myLocation, Standard_False); } } @@ -63,6 +63,6 @@ void TopoDS_Iterator::Next() myShape = myShapes.Value(); myShape.Orientation(TopAbs::Compose(myOrientation,myShape.Orientation())); if (!myLocation.IsIdentity()) - myShape.Move(myLocation); + myShape.Move(myLocation, Standard_False); } } diff --git a/src/TopoDS/TopoDS_Shape.hxx b/src/TopoDS/TopoDS_Shape.hxx index d44175f4f2..be92f62837 100644 --- a/src/TopoDS/TopoDS_Shape.hxx +++ b/src/TopoDS/TopoDS_Shape.hxx @@ -91,14 +91,26 @@ public: const TopLoc_Location& Location() const { return myLocation; } //! Sets the shape local coordinate system. - void Location (const TopLoc_Location& theLoc) { myLocation = theLoc; } + void Location (const TopLoc_Location& theLoc, const Standard_Boolean theRaiseExc = Standard_True) + { + const gp_Trsf& aTrsf = theLoc.Transformation(); + if ((Abs(Abs(aTrsf.ScaleFactor()) - 1.) > TopLoc_Location::ScalePrec() || aTrsf.IsNegative()) && theRaiseExc) + { + //Exception + throw Standard_DomainError("Location with scaling transformation is forbidden"); + } + else + { + myLocation = theLoc; + } + } //! Returns a shape similar to with the local //! coordinate system set to . - TopoDS_Shape Located (const TopLoc_Location& theLoc) const + TopoDS_Shape Located (const TopLoc_Location& theLoc, const Standard_Boolean theRaiseExc = Standard_True) const { TopoDS_Shape aShape (*this); - aShape.Location (theLoc); + aShape.Location (theLoc, theRaiseExc); return aShape; } @@ -176,13 +188,25 @@ public: void Convex (Standard_Boolean theIsConvex) { myTShape->Convex (theIsConvex); } //! Multiplies the Shape location by thePosition. - void Move (const TopLoc_Location& thePosition) { myLocation = thePosition * myLocation; } + void Move(const TopLoc_Location& thePosition, const Standard_Boolean theRaiseExc = Standard_True) + { + const gp_Trsf& aTrsf = thePosition.Transformation(); + if ((Abs(Abs(aTrsf.ScaleFactor()) - 1.) > TopLoc_Location::ScalePrec() || aTrsf.IsNegative()) && theRaiseExc) + { + //Exception + throw Standard_DomainError("Moving with scaling transformation is forbidden"); + } + else + { + myLocation = thePosition * myLocation; + } + } //! Returns a shape similar to with a location multiplied by thePosition. - TopoDS_Shape Moved (const TopLoc_Location& thePosition) const + TopoDS_Shape Moved (const TopLoc_Location& thePosition, const Standard_Boolean theRaiseExc = Standard_True) const { TopoDS_Shape aShape (*this); - aShape.Move (thePosition); + aShape.Move (thePosition, theRaiseExc); return aShape; } diff --git a/src/VrmlData/VrmlData_Group.cxx b/src/VrmlData/VrmlData_Group.cxx index af43b054a8..7229dfd5cf 100644 --- a/src/VrmlData/VrmlData_Group.cxx +++ b/src/VrmlData/VrmlData_Group.cxx @@ -411,7 +411,7 @@ void VrmlData_Group::Shape (TopoDS_Shape& theShape, VrmlData_DataMapOfShapeAppearance * pMapApp) { VrmlData_Scene::createShape (theShape, myNodes, pMapApp); - theShape.Location(myTrsf); + theShape.Location(myTrsf, Standard_False); } //======================================================================= diff --git a/src/XCAFDoc/XCAFDoc_ShapeTool.cxx b/src/XCAFDoc/XCAFDoc_ShapeTool.cxx index 0598161e0b..294c97461a 100644 --- a/src/XCAFDoc/XCAFDoc_ShapeTool.cxx +++ b/src/XCAFDoc/XCAFDoc_ShapeTool.cxx @@ -333,7 +333,7 @@ Standard_Boolean XCAFDoc_ShapeTool::GetShape (const TDF_Label& L, TopoDS_Shape& if ( L.FindAttribute(XCAFDoc::ShapeRefGUID(), Node) && Node->HasFather() && L.FindAttribute(XCAFDoc_Location::GetID(), LocationAttribute)) { if ( ! GetShape(Node->Father()->Label(), S) ) return Standard_False; - S.Move ( LocationAttribute->Get() ); + S.Move ( LocationAttribute->Get(), Standard_False ); return Standard_True; } @@ -537,7 +537,7 @@ static Standard_Boolean prepareAssembly (const TopoDS_Shape& theShape, gp_Trsf aTrsf; aTrsf.SetScale(gp_Pnt(0,0,0), 1); aLoc = TopLoc_Location( aTrsf ); - aNewScomp.Location( aLoc ); + aNewScomp.Location( aLoc, Standard_False ); } B.Add(theOUTShape, aNewScomp); } @@ -1585,7 +1585,7 @@ static Standard_Boolean checkForShape (const TopoDS_Shape& theShape, TopoDS_Shape aCopySh = theCurSh; aCompLoc = aCompLoc.Multiplied( theCurSh.Location() ); aSupLoc = aSupLoc.Multiplied( aCompLoc ); - aCopySh.Location( aSupLoc ); + aCopySh.Location( aSupLoc, Standard_False ); if ( aCopySh.IsSame( theShape ) ) { theLabels.Prepend( theUserL ); return Standard_True; @@ -1676,7 +1676,7 @@ static Standard_Boolean getShapesOfSHUO (TopLoc_IndexedMapOfLocation& theaPrevLo l--; } } - aSHUO_NUSh.Location( SupcompLoc ); + aSHUO_NUSh.Location( SupcompLoc, Standard_False ); theShape = aSHUO_NUSh; } return (!theShape.IsNull()); @@ -1958,7 +1958,7 @@ void XCAFDoc_ShapeTool::makeSubShape (const TDF_Label& theMainShapeL, // Identical location and empty location are not the same for ShapeTool, so try to process both // in case of aSubLoc is not identical, the second Add try will not affect algorithm. Standard_Boolean isNewSubL; - isNewSubL = AddSubShape(thePart, aChildShape.Located(aSubLoc), aSubLabel); + isNewSubL = AddSubShape(thePart, aChildShape.Located(aSubLoc, Standard_False), aSubLabel); if (aSubLabel.IsNull()) { isNewSubL = AddSubShape(thePart, aChildShape.Located(TopLoc_Location()), aSubLabel); @@ -2051,7 +2051,7 @@ Standard_Boolean XCAFDoc_ShapeTool::updateComponent(const TDF_Label& theItemLabe if ( updateComponent(aComponentRefLab, aComponentShape, theUpdated) ) { isModified = Standard_True; - aComponentShape.Location(aComponentLoc); // Apply placement + aComponentShape.Location(aComponentLoc, Standard_False); // Apply placement } } else diff --git a/src/XCAFPrs/XCAFPrs.cxx b/src/XCAFPrs/XCAFPrs.cxx index 54d449c1a4..e7ff3a3cc3 100644 --- a/src/XCAFPrs/XCAFPrs.cxx +++ b/src/XCAFPrs/XCAFPrs.cxx @@ -95,7 +95,7 @@ static Standard_Boolean getShapesOfSHUO (TopLoc_IndexedMapOfLocation& theaPrevLo l--; } } - aSHUO_NUSh.Location( SupcompLoc ); + aSHUO_NUSh.Location( SupcompLoc, Standard_False ); theSHUOShapeSeq.Append( aSHUO_NUSh ); } return (theSHUOShapeSeq.Length() > 0); @@ -295,7 +295,7 @@ void XCAFPrs::CollectStyleSettings (const TDF_Label& theLabel, continue; } } - aSubshape.Move (theLoc); + aSubshape.Move (theLoc, Standard_False); XCAFPrs_Style* aMapStyle = theSettings.ChangeSeek (aSubshape); if (aMapStyle == NULL) theSettings.Add (aSubshape, aStyle); diff --git a/tests/bugs/modalg_6/bug28394_2 b/tests/bugs/modalg_6/bug28394_2 index 14fd44d5ad..9e806fdb70 100644 --- a/tests/bugs/modalg_6/bug28394_2 +++ b/tests/bugs/modalg_6/bug28394_2 @@ -10,7 +10,7 @@ set GoodNbExtremas 4 circle c1 5 5 10 0 1 1 20 mkedge e1 c1 -bmirror e1 e1 5 5 10 1 0 0 +tmirror e1 e1 5 5 10 1 0 0 mkcurve c1 e1 cvalue c1 0.63 x1 y1 z1 diff --git a/tests/bugs/moddata_3/bug27457 b/tests/bugs/moddata_3/bug27457 new file mode 100644 index 0000000000..e2c750d692 --- /dev/null +++ b/tests/bugs/moddata_3/bug27457 @@ -0,0 +1,33 @@ +puts "=========" +puts "0027457: Modeling Data - Raise if scaled transformation is used for shape location" +puts "=========" +puts "" + +box b 1 1 1 +fscale b 0 0 0 2 +set chsh [checkshape b f] +regexp {Shapes with problems : ([0-9]+)} $chsh full NbSh +if { $NbSh > 1 } { + puts "Number of faulty shapes : $NbSh" +} else { + puts "Error: fscale does not produce wrong shape" +} + +set Nbloc 0 +set chloc [checkloc b] +set Nbloc [llength $chloc] +if { $Nbloc > 0 } { + puts "Number of problematic locations : $Nbloc" +} else { + puts "Error: fscale does not produce wrong location" +} +checkprops b -v 8. + +box b1 1 1 1 +bscale b1 0 0 0 2 +checkprops b1 -v 1. + +smallview +donly b b1 +fit +checkview -screenshot -2d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/moddata_3/bug27457_1 b/tests/bugs/moddata_3/bug27457_1 new file mode 100644 index 0000000000..91bcd048b1 --- /dev/null +++ b/tests/bugs/moddata_3/bug27457_1 @@ -0,0 +1,32 @@ +puts "=========" +puts "0027457: Modeling Data - Raise if scaled transformation is used for shape location" +puts " Testing tool for purging locations" +puts "=========" +puts "" + +restore [locate_data_file bug27457_1.brep] s +set chsh [checkshape s b] +regexp {Shapes with problems : ([0-9]+)} $chsh full NbSh +puts "Number of faulty shapes : $NbSh" + +set Nbloc 0 +set chloc [checkloc s] +set Nbloc [llength $chloc] +puts "Number of problematic locations : $Nbloc" + +set Purge_status [purgeloc s1 s] +checkshape s1 + +set Nbloc1 0 + +set chloc1 [checkloc s1] +if { ! [regexp {There are no problematic shapes} $chloc1 full str]} { + puts "Error - not all problematic locations are purged" + set Nbloc1 [llength $chloc1] + puts "Number of problematic locations : $Nbloc1" +} + +smallview +donly s1 +fit +checkview -screenshot -2d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/moddata_3/bug27457_2 b/tests/bugs/moddata_3/bug27457_2 new file mode 100644 index 0000000000..672d05d670 --- /dev/null +++ b/tests/bugs/moddata_3/bug27457_2 @@ -0,0 +1,32 @@ +puts "=========" +puts "0027457: Modeling Data - Raise if scaled transformation is used for shape location" +puts " Testing tool for purging locations" +puts "=========" +puts "" + +restore [locate_data_file bug27457_2.brep] s +set chsh [checkshape s b] +regexp {Shapes with problems : ([0-9]+)} $chsh full NbSh +puts "Number of faulty shapes : $NbSh" + +set Nbloc 0 +set chloc [checkloc s] +set Nbloc [llength $chloc] +puts "Number of problematic locations : $Nbloc" + +set Purge_status [purgeloc s1 s] +checkshape s1 + +set Nbloc1 0 + +set chloc1 [checkloc s1] +if { ! [regexp {There are no problematic shapes} $chloc1 full str]} { + puts "Error - not all problematic locations are purged" + set Nbloc1 [llength $chloc1] + puts "Number of problematic locations : $Nbloc1" +} + +smallview +donly s1 +fit +checkview -screenshot -2d -path ${imagedir}/${test_image}.png diff --git a/tests/v3d/bugs/bug22240 b/tests/v3d/bugs/bug22240 index 8476555012..a831cbd611 100644 --- a/tests/v3d/bugs/bug22240 +++ b/tests/v3d/bugs/bug22240 @@ -6,7 +6,7 @@ puts "" pload MODELING VISUALIZATION restore [locate_data_file bug22240_Pump_Nut.brep] a restore [locate_data_file bug22240_Pump_Nut.brep] b -bscale b 0 0 0 2. +tscale b 0 0 0 2. vinit View1 vdisplay a b vsetdispmode a 1 diff --git a/tests/v3d/bugs/bug30630_1 b/tests/v3d/bugs/bug30630_1 index 9fa8bfbe95..9b675357a4 100644 --- a/tests/v3d/bugs/bug30630_1 +++ b/tests/v3d/bugs/bug30630_1 @@ -22,7 +22,7 @@ verase b # Box with mirror transformation box a 1 1 1 -bmirror a 0 0 0 1 0 0 +fmirror a 0 0 0 1 0 0 explode a sh renamevar a_1 a vdisplay -dispMode 1 a @@ -37,7 +37,7 @@ verase a # Box with mirror transformation and reversed face box c 1 1 1 -bmirror c 0 0 0 1 0 0 +fmirror c 0 0 0 1 0 0 orientation c R explode c sh renamevar c_1 c diff --git a/tests/v3d/bugs/bug30630_2 b/tests/v3d/bugs/bug30630_2 index 6018a32c94..634223fc1f 100644 --- a/tests/v3d/bugs/bug30630_2 +++ b/tests/v3d/bugs/bug30630_2 @@ -13,7 +13,7 @@ vcamera -persp # Simple box box b 1 1 1 -bmirror b 0 0 0 0 0 1 +fmirror b 0 0 0 0 0 1 vdisplay -dispMode 1 b vaspects b -setBackFaceColor RED box bb 0.5 0.5 -0.5 0.1 0.1 0.1 diff --git a/tests/v3d/bugs/bug30630_3 b/tests/v3d/bugs/bug30630_3 index 6bf0e08a35..596698e84c 100644 --- a/tests/v3d/bugs/bug30630_3 +++ b/tests/v3d/bugs/bug30630_3 @@ -20,7 +20,7 @@ verase b # Box with mirror transformation box a 1 1 1 -bmirror a 0 0 0 1 0 0 +fmirror a 0 0 0 1 0 0 vdisplay -dispMode 1 a vaspects a -setBackFaceColor RED vfit @@ -33,7 +33,7 @@ verase a # Box with mirror transformation and reversed face box c 1 1 1 -bmirror c 0 0 0 1 0 0 +fmirror c 0 0 0 1 0 0 orientation c R vdisplay -dispMode 1 c vaspects c -setBackFaceColor RED