mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Useless variable MAXTOLERANCEGEOM is removed in order to allow to place point at any distance from curve/surface. Algorithm is simplified: particular calculations for analytical geometry are removed, only using of Extrema_... is kept. Test case for issue #27110
18 lines
657 B
Plaintext
18 lines
657 B
Plaintext
puts "========"
|
|
puts "OCC27110"
|
|
puts "========"
|
|
puts ""
|
|
###############################################################################
|
|
# Regression: Draw command "parameters" can not compute parameter on the line
|
|
###############################################################################
|
|
|
|
restore [locate_data_file bug27110-ClosedWireEdge.brep] e1
|
|
mkcurve c1 e1
|
|
parameters c1 800.0 0.001 0 0.001 U
|
|
|
|
set bug_info [dump U]
|
|
set bug_info [string trim [string range $bug_info [expr {[string last "\n" $bug_info] + 1}] [expr {[string length $bug_info] - 1}]]]
|
|
if {$bug_info != 800} {
|
|
puts "ERROR: OCC27110 is reproduced. Parameters U is not equal 800."
|
|
}
|