mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Remove performance comparing with hardcoded value. Test cases for performance of some commands were moved to perf group. Updated documentation.
27 lines
730 B
Plaintext
27 lines
730 B
Plaintext
puts "=========="
|
|
puts "OCC24899"
|
|
puts "=========="
|
|
puts ""
|
|
##################################################################################################
|
|
# Time of computation of intersection points with help of class BRepIntCurveSurface_Inter is big
|
|
##################################################################################################
|
|
|
|
polyline l -10 1 1 80 1 1
|
|
explode l e
|
|
|
|
restore [locate_data_file bug24899_TheHull.brep] h1
|
|
mkcurve c1 l_1
|
|
BRepIntCS c1 h1 r
|
|
distmini dd l_1 h1
|
|
|
|
dchrono t1 restart
|
|
for { set i 0} { $i <= 100 } {incr i} {
|
|
BRepIntCS c1 h1 r
|
|
}
|
|
dchrono t1 stop counter BRepIntCS
|
|
|
|
dchrono t2 restart
|
|
for { set j 0} { $j <= 100 } {incr j} {
|
|
distmini dd l_1 h1
|
|
}
|
|
dchrono t2 stop counter distmini |