mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0032784: BinXCAF fails to load documents containing the shapes with scaled/mirrored location
A flag not to raise an exception is used on reading of an XCAF document. If such a shape with scaling transformation is stored in the document, it should be read.
This commit is contained in:
parent
ba9548c55b
commit
d7dac7fc36
@ -131,7 +131,7 @@ static int TranslateFrom (const BinObjMgt_Persistent& theSource,
|
|||||||
TopAbs_Orientation anOrient = CharToOrientation (aCharOrient);
|
TopAbs_Orientation anOrient = CharToOrientation (aCharOrient);
|
||||||
|
|
||||||
theResult.TShape (theShapeSet->Shape (aShapeID).TShape());//TShape
|
theResult.TShape (theShapeSet->Shape (aShapeID).TShape());//TShape
|
||||||
theResult.Location (theShapeSet->Locations().Location (aLocID)); //Location
|
theResult.Location (theShapeSet->Locations().Location (aLocID), Standard_False); //Location
|
||||||
theResult.Orientation (anOrient);//Orientation
|
theResult.Orientation (anOrient);//Orientation
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
6
tests/bugs/xde/bug32784
Normal file
6
tests/bugs/xde/bug32784
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
puts "==========="
|
||||||
|
puts "0032784: BinXCAF fails to load documents containing the shapes with scaled/mirrored location"
|
||||||
|
puts "==========="
|
||||||
|
|
||||||
|
if [info exists D] {catch {Close D}}
|
||||||
|
XOpen [locate_data_file bug32784_mirrored.xbf] D
|
Loading…
x
Reference in New Issue
Block a user