1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/perf/modalg/bug28030
luz paz 7b5e532f83 0031939: Coding - correction of spelling errors in comments [part 7]
Fix various typos

Fixed via codespell v2.1.dev
2021-01-20 21:27:44 +03:00

30 lines
782 B
Plaintext

puts "========"
puts "OCC28030"
puts "========"
puts ""
########################################################################################################
# Algorithm GeomLib_CheckCurveOnSurface takes too much time for Bspline curves with big number of knots
########################################################################################################
beziercurve c 4 0 0 0 1 1 0 2 1 0 3 0 0
convert c1 c
set i 1
repeat 98 {insertknot c1 0.01*$i 1; incr i 1}
mkedge e1 c1
prism p1 e1 0 0 1
explode p1 e
dchrono cpu restart
xdistef p1_3 p1
dchrono cpu stop counter xdistef_1
convert c2 c
set i 1
repeat 1000 {insertknot c2 0.00098*$i 1; incr i 1}
mkedge e2 c2
prism p2 e2 0 0 1
explode p2 e
dchrono cpu restart
xdistef p2_3 p2
dchrono cpu stop counter xdistef_2