mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Check whether p-curve being projected can be approximated by straight line is made before full-scale projection, to improve performance. If straight, pcurve is created as Line only if this will lead to the same range parameterization as 3d curve, otherwise BSpline of degree 1 is created. Re-approximation of line pcurves by bsplines removed from ShapeFix_Edge. Test case updating to new behavior. Added "static" keyword to the fixPeriodictyTroubles() function. Update of test-cases according new behavior
27 lines
606 B
Plaintext
Executable File
27 lines
606 B
Plaintext
Executable File
puts "========="
|
|
puts " OCC210 "
|
|
puts "========="
|
|
puts ""
|
|
##################################################
|
|
# Improve FixShape to correct case of touching wires
|
|
##################################################
|
|
puts "TODO CR22598 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
|
|
|
pload XDE
|
|
|
|
cpulimit 2500
|
|
|
|
set BugNumber OCC210
|
|
|
|
set filepath [locate_data_file UKI60591.stp]
|
|
if [catch { stepread $filepath a * } result] {
|
|
puts "Faulty ${BugNumber}: here is reading problem"
|
|
} else {
|
|
puts "Reading ${BugNumber} OK"
|
|
tpcompound r
|
|
fixshape result r
|
|
checkshape result
|
|
}
|
|
|
|
set 2dviewer 0
|