mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Calculate radius of circumcircle as maximum difference between its center and vertices or reference triangle. Draw test command OCC25547 has been implemented. Small optimizations for speed. Update of test-cases according to the new behaviour Update of test-cases in group mesh
17 lines
588 B
Plaintext
17 lines
588 B
Plaintext
puts "========"
|
|
puts "OCC24923"
|
|
puts "========"
|
|
puts ""
|
|
############################################
|
|
# BRepMesh_CircleTool produces bad circles
|
|
############################################
|
|
|
|
pload QAcommands
|
|
|
|
set bug_info [OCC24923]
|
|
set num_failed [string range [lindex $bug_info 12] 0 [expr {[string first "%" [lindex $bug_info 12]] - 1}]]
|
|
set max_failed [string range [lindex $bug_info 14] 0 [expr {[string first "%" [lindex $bug_info 14]] - 1}]]
|
|
if {$num_failed > $max_failed} {
|
|
puts "ERROR: OCC24923 is reproduced. Number of failed tests is too large ($num_failed > $max_failed)."
|
|
}
|