mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
BRepOffset_MakeOffset.cxx - tolerance control for building planar faces is implemented, updating tolerance for initial entities is avoided BRepAlgo_Loop.cxx - "total" setting tolerance 0.001 is removing BRepLib.cxx - checking of "locked" for vertex is removing in static function UpdShTol QABugs_20.cxx - add new command OCC26441 for checking tolerance differenses between two "identical" shapes tests/bugs/modalg_7/bug30054 - case now is "BAD", because really result shape is invalid: many faces has not closed wires with huge gaps between ends of edges. Result was "OK" only because tolerances of vertices were increased by algorithm to cover all gaps. tests/bugs/modalg_8/bug26441 - new test case added Other test: B3, C8, A7, C8: they were "BAD" and now are "BAD", only some problems are changed.
41 lines
819 B
Plaintext
41 lines
819 B
Plaintext
puts "============"
|
|
puts "0026441: Modeling Algorithms - BRepOffset_MakeOffset affects original shape"
|
|
puts "============"
|
|
puts ""
|
|
|
|
pload QAcommands
|
|
restore [locate_data_file bug26440_plate.brep] sh
|
|
|
|
tcopy sh sh_ref
|
|
thickshell result sh 160
|
|
|
|
checkprops result -s 2.40831e+07
|
|
checkshape result
|
|
|
|
set nbshapes_expected "
|
|
Number of shapes in shape
|
|
VERTEX : 196
|
|
EDGE : 308
|
|
WIRE : 110
|
|
FACE : 110
|
|
SHELL : 1
|
|
SOLID : 1
|
|
COMPSOLID : 0
|
|
COMPOUND : 0
|
|
SHAPE : 726
|
|
"
|
|
checknbshapes result -ref ${nbshapes_expected} -t -m "solid construction"
|
|
if { [info exist BadEdges] } {
|
|
unset BadEdges
|
|
}
|
|
if { [info exist BadVerts] } {
|
|
unset BadVerts
|
|
}
|
|
|
|
OCC26441 sh sh_ref 1.e-7 1
|
|
|
|
if { [isdraw BadEdges] || [isdraw BadVerts]} {
|
|
puts "Error: tolerances of some subshapes of initial shape are changed"
|
|
}
|
|
|