mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
Data Exchange - Datum Axis extraction issue (#407)
Refactor axis handling with correct positioning and handling exceptions.
This commit is contained in:
parent
72960352ed
commit
55f8c6d1bf
@ -3286,20 +3286,11 @@ Standard_Boolean STEPCAFControl_Reader::readDatumsAP242(const Handle(Standard_Tr
|
|||||||
if (theGDTL.FindAttribute(XCAFDoc_GeomTolerance::GetID(), aTol))
|
if (theGDTL.FindAttribute(XCAFDoc_GeomTolerance::GetID(), aTol))
|
||||||
{
|
{
|
||||||
Handle(XCAFDimTolObjects_GeomToleranceObject) anObj = aTol->GetObject();
|
Handle(XCAFDimTolObjects_GeomToleranceObject) anObj = aTol->GetObject();
|
||||||
Handle(TColStd_HArray1OfReal) aDirArr = anAx->Axis()->DirectionRatios();
|
const Handle(Geom_Axis2Placement) aGeomAx2 =
|
||||||
Handle(TColStd_HArray1OfReal) aDirRArr = anAx->RefDirection()->DirectionRatios();
|
StepToGeom::MakeAxis2Placement(anAx, theLocalFactors);
|
||||||
Handle(TColStd_HArray1OfReal) aLocArr = anAx->Location()->Coordinates();
|
if (!aGeomAx2.IsNull())
|
||||||
gp_Dir aDir;
|
|
||||||
gp_Dir aDirR;
|
|
||||||
gp_Pnt aPnt;
|
|
||||||
if (!aDirArr.IsNull() && aDirArr->Length() > 2 && !aDirRArr.IsNull()
|
|
||||||
&& aDirRArr->Length() > 2 && !aLocArr.IsNull() && aLocArr->Length() > 2)
|
|
||||||
{
|
{
|
||||||
aDir.SetCoord(aDirArr->Lower(), aDirArr->Lower() + 1, aDirArr->Lower() + 2);
|
anObj->SetAxis(aGeomAx2->Ax2());
|
||||||
aDirR.SetCoord(aDirRArr->Lower(), aDirRArr->Lower() + 1, aDirRArr->Lower() + 2);
|
|
||||||
aPnt.SetCoord(aLocArr->Lower(), aLocArr->Lower() + 1, aLocArr->Lower() + 2);
|
|
||||||
gp_Ax2 anA(aPnt, aDir, aDirR);
|
|
||||||
anObj->SetAxis(anA);
|
|
||||||
aTol->SetObject(anObj);
|
aTol->SetObject(anObj);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user