mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-11 18:32:35 +08:00
- Addition of `gp_Dir::D` and `gp_Dir2d::D` enums for standard directions (X, Y, Z, NX, NY, NZ) - Constexpr/noexcept constructors for geometric primitives (circles, cones, cylinders, etc.) - Enhanced axis placement classes with enum-based constructors - Replacement of hardcoded direction values throughout the codebase
16 lines
428 B
Plaintext
16 lines
428 B
Plaintext
puts "========"
|
|
puts "0024676: Wrong result done by intersection algorithm"
|
|
puts "========"
|
|
puts ""
|
|
|
|
restore [locate_data_file bug24676_b2.brep] b2
|
|
|
|
for {set i 1} { $i <= 6} {incr i} {
|
|
restore [locate_data_file bug24676_b1_${i}.brep] b1_$i
|
|
set log [bopcurves b1_$i b2]
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} $log full Toler NbCurv
|
|
if {$NbCurv != 1} {
|
|
puts "Error: Number of curves is wrong"
|
|
}
|
|
}
|