mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Implementation of raising exception while using scale and mirror transformation in shape location TopLoc/TopLoc_Location.hxx TopoDS/TopoDS_Shape.hxx Implementation of new tools for removing forbidden locations from shapes: BRepTools/BRepTools_PurgeLocations.cxx BRepTools/BRepTools_PurgeLocations.hxx BRepTools/BRepTools.cxx BRepTools/BRepTools.hxx Draw commands for transforming shapes are corrected, new draw commands: purgeloc, checkloc added BRepTest/BRepTest_BasicCommands.cxx Fixing unstable test bug xde bug24759 StepToGeom/StepToGeom.cxx All other C++ commits are modification of algorithms used mainly in import/export operations in order to allows these operations if shape locations contains scale and mirror transformations. New test for command purgeloc added tests/bugs/moddata_3/bug27457 tests/bugs/moddata_3/bug27457_1 tests/bugs/moddata_3/bug27457_2 Some test corrected according to modifications.
34 lines
726 B
Plaintext
34 lines
726 B
Plaintext
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
|