mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
ProjLib_Cone.cxx - correction wrong calculation of projection line on cone GeomInt_IntSS_1.cxx - modification of method BuildPCurves(...) - adjusting first or last knots of 2d Curve ProjLib_ComputeApprox.cxx - modification of method Function_SetUVBounds(...) for case projecting line on cone. Modification of tests - removing first TODO Test case for issue #27322
24 lines
683 B
Plaintext
24 lines
683 B
Plaintext
puts "========"
|
|
puts "OCC27322"
|
|
puts "========"
|
|
puts ""
|
|
####################################################
|
|
# geom/revolution_00/A1: Incorrect pcurve creation
|
|
####################################################
|
|
|
|
restore [locate_data_file bug27325_edge.brep] en
|
|
restore [locate_data_file bug27325_face.brep] f
|
|
|
|
bhaspc en f do
|
|
mk2dcurve c1 en f
|
|
explode f e
|
|
mk2dcurve c2 f_3 f
|
|
2dcvalue c1 0.0025 x y
|
|
2dproj c2 x y
|
|
|
|
set bug_info [string trim [length ext_1]]
|
|
set bug_info [string trim [string range $bug_info [expr {[string last " " $bug_info] + 1}] [expr {[string length $bug_info] - 1}]]]
|
|
if {$bug_info >= 1.e-9} {
|
|
puts "ERROR: OCC27322 is reproduced. Incorrect pcurve creation."
|
|
}
|