mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Bnd_OBB constructor from Bnd_Box is fixed for VOID input. DRAW command bounding command is adjusted: - Support of old syntax 'bounding shape'is restored. - Exception on VOID bounding box is avoided. - Arguments are handled in case-insensitive way. - Options -s, -perfmeter, and ability to set result as first argument are removed as redundant. - Help is moved to command definition. Separate command OCC29311 is added (in QADraw) to do the same as option -perfmeter did; tests are updated.
27 lines
662 B
Plaintext
27 lines
662 B
Plaintext
# test binsave and binrestore commands
|
|
|
|
pload TOPTEST
|
|
|
|
set file $imagedir/${casename}.bin
|
|
|
|
restore [locate_data_file OCC615.brep] b
|
|
|
|
if [regexp "Cannot write to the file $file" [binsave b $file]] {
|
|
puts "Error: binsave"
|
|
} elseif [regexp "Cannot read from the file $file" [binrestore $file bb]] {
|
|
puts "Error: binrestore"
|
|
} else {
|
|
file delete $file
|
|
if {[bounding b -dump] != [bounding bb -dump]} {
|
|
puts "Error: restored shape has another bounding box"
|
|
}
|
|
checkshape bb
|
|
checknbshapes bb -ref [nbshapes b]
|
|
checkprops bb -l 5501.4
|
|
checkprops bb -s 201237
|
|
checkprops bb -v 4.68509e+006
|
|
checktrinfo bb -ref [trinfo b]
|
|
}
|
|
|
|
puts "TEST COMPLETED"
|