mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. Approx_ComputeCLine.gxx, Approx_FitAndDivide.hxx, Approx_FitAndDivide2d.hxx, BRepFill_ComputeCLine.hxx It is base modification, which allows improve performance of approximation with help of Approx_ComputeCLine. The main idea of improvement is using degree selection by inverse order - from maxdegree to mindegree. If tolerance for maxdegree is not reached, there is no sense to make approximation for current number of knots with lower degree, it is necessary to cut parametric interval. 2. ProjLib_ComputeApprox, ProjLib_ComputeApproxOnPolarSurface, ProjLib_ComputeApproxOnPolarSurface, ProjLib_ProjectOnPlane It is additional modification of methods using Approx_ComputeCLine. Mainly, modifications concern to more optimal choosing parameters for approximation algorithm. 3. BRepCheck_Face Small improvement of method Intersect(...), which intersects two wires on face. 4. BRepTopAdaptor_FClass2d Impovement of treatment infinitely narrow faces. 5. ChFi3d/ChFi3d_Builder_6.cxx Small improvement, which forbids extension of singular boundary of surface. It was TODO problem in tests/bugs/modalg_7/bug27711_3 6. IntTools_EdgeEdge.cxx Improvement of performance for cases of searching common parts between line and analytical curve 7. GeomliteTest_CurveCommands.cxx Adding Draw command fitcurve. This command is analog of approxcurve, but uses Approx_FitAndDivide algorithm. Mainly to have direct draw command for testing Approx_ComputeCLine. 8. Extrema_ExtElC.cxx Treatment of case "infinite solutions" for extrema line-ellipse 9. Modification of some tests according to new behavior of algorithm. 10. tests/perf/moddata/bug30435 Test for new improved algorithm. 11. Implementation QAcommand OCC30435 in QABugs_20.cxx used in test bug30435
47 lines
844 B
Plaintext
47 lines
844 B
Plaintext
puts "========"
|
|
puts "BUG30435"
|
|
puts "Improving performance of Approx_ComputeCLine"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload QAcommands
|
|
cone con 0 0 0 0 0 -1 1 0 0 -30 0
|
|
2dbeziercurve b 4 0 0 15 15 35 -15 50 1.
|
|
approxcurveonsurf cc b con 1.e-7 1 12 1000
|
|
clear con
|
|
clpoles cc
|
|
|
|
set time0 ""
|
|
set time1 ""
|
|
|
|
dchrono t0 restart
|
|
OCC30435 r0 cc 0 50
|
|
dchrono t0 stop
|
|
set inf0 [dchrono t0 counter OCC30435]
|
|
|
|
regexp {COUNTER OCC30435: ([-0-9.+eE]+)} $inf0 full0 time0
|
|
|
|
dchrono t1 restart
|
|
OCC30435 r1 cc 1 50
|
|
dchrono t1 stop
|
|
set inf1 [dchrono t1 counter OCC30435_1]
|
|
|
|
regexp {COUNTER OCC30435_1: ([-0-9.+eE]+)} $inf1 full1 time1
|
|
|
|
if { $time1 > $time0 } {
|
|
puts "Error : optimized algorithm works slowly then initial one"
|
|
} else {
|
|
puts "Performance ratio is [expr $time0/$time1]"
|
|
}
|
|
|
|
clpoles r0
|
|
clpoles r1
|
|
smallview
|
|
fit
|
|
xwd $imagedir/${test_image}.png
|
|
|
|
|
|
|
|
|
|
|