1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
dbv 7da5f7b1c2 0024757: DRAW: Move commands fixshape, tolerance, and similar to MODELING
Package SWDRAW has been moved to TKTopTest toolkit. Class SWDRAW_ToVRML has been moved to XSDRAWSTLVRML_ToVRML
Removed unused classes:
SWDRAW_ShapeBuild
SWDRAW_ShapeConstruct
XSDRAW_Shape
Removed NSPApply command
Test script update
Removed xtrace command
2014-04-04 12:57:25 +04:00

28 lines
669 B
Plaintext

set env(CSF_dataDefaults) [file dirname [info script]]/../data
puts $env(CSF_dataDefaults)
DT_ApplySeq result a data data1
set b [explode a f]
set b1 [explode result f]
puts $b
puts $b1
set nb_surf 0
set i 0
for {set i 0} {$i < [llength $b]} {incr i} {
set t [lindex $b $i]
set t1 [lindex $b1 $i]
mksurface s$i $t
mksurface su$i $t1
set q [dump s$i]
set q1 [dump su$i]
puts $q
puts $q1
if { [lindex $q 5] != [lindex $q1 5] } {
if { [lindex $q1 5] == "SurfaceOfRevolution" } {
incr nb_surf
}
}
}
if { $nb_surf == 0 || $nb_revol != $nb_surf } {
puts "Error : $nb_revol faces should be converted instead of $nb_surf."
}