1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_6/bug28394_2
ifv 9592ae247b 0027457: Modeling - Raise exception if scaled transformation is used for shape location
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.
2021-08-20 20:18:06 +03:00

42 lines
1.0 KiB
Plaintext

puts "========"
puts "OCC28394"
puts "========"
puts ""
##############################################
# Not precise extrema solution of line and circle lying in the same plane
##############################################
set GoodNbExtremas 4
circle c1 5 5 10 0 1 1 20
mkedge e1 c1
tmirror e1 e1 5 5 10 1 0 0
mkcurve c1 e1
cvalue c1 0.63 x1 y1 z1
cvalue c1 5.47 x2 y2 z2
dset dlx x2-x1
dset dly y2-y1
dset dlz z2-z1
line l1 x1 y1+5 z1+5 dlx dly dlz
set extrema_length [ llength [ extrema c1 l1 1 ] ]
# Amount check
if {${extrema_length} != [ expr 5*${GoodNbExtremas}] } {
puts "Error: Number of extremas computed is wrong"
}
for {set i 1} {${i} <= 4} {incr i} {
regexp {Axis :([-0-9.+eE]+), ([-0-9.+eE]+), ([-0-9.+eE]+)} [dump ext_${i}] full dx dy dz
cvalue c1 prm_1_${i} x y z dcx dcy dcz
set DPL [ dval ${dx}*dlx+${dy}*dly+${dz}*dlz ]
set DPC [ dval ${dx}*dcx+${dy}*dcy+${dz}*dcz ]
if { (abs(${DPL}) > 1.0e-12) || (abs(${DPC}) > 1.0e-12) } {
puts "Error: extrema ext_${i} was computed wrong (is not the normal to the curves)"
}
}