mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Test for 0023171: Got wrong result after stitching Test for 0023612: BRepPrimAPI_MakeTorus Test for 0023610: checkshape command does not detect mismatch of the tolerance values among the sub-shapes of the shape Test for 0023660: 'bsection' produces result with gap Test for 0024397: BRepBuilderAPI_Copy works not correct Test for 0023927: BRepProj_Projection produces Edge with one Vertex outside from curve Test for 0023902: Cannot build fillet Test for 0023669: Error in Boolean operations algorithm: section between cylindrical face and prism is incomplete Test for 0023660: 'bsection' produces result with gap Test for 0024100: Bad pcurve is built on a face while converting the shape from STEP format. Test for 0024319: Sewing makes a solid transparent Test for 0024302: Section operation modifies input argument Test for 0024397: BRepBuilderAPI_Copy works not correct Test for 0024418: Wrong section curves when intersecting analytical surfaces
32 lines
784 B
Plaintext
32 lines
784 B
Plaintext
puts "========"
|
|
puts "OCC23927"
|
|
puts "========"
|
|
puts ""
|
|
######################################################################
|
|
# BRepProj_Projection produces Edge with one Vertex outside from curve
|
|
######################################################################
|
|
|
|
restore [locate_data_file bug23927_line.brep] line
|
|
restore [locate_data_file bug23927_surf.brep] surf
|
|
|
|
breducetolerance surf
|
|
|
|
prj p line surf 0.57735025882720947 -0.57735025882720947 0.57735025882720947
|
|
|
|
explode p_1 V
|
|
|
|
smallview
|
|
fit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
|
|
|
explode line V
|
|
|
|
set tol_abs 0.001
|
|
set tol_rel 0
|
|
|
|
distmini d p_1_1 line_1
|
|
checkreal "Projection, p1" [dval d_val] 0 $tol_abs $tol_rel
|
|
|
|
distmini d p_1_2 line_2
|
|
checkreal "Projection, p2" [dval d_val] 0 $tol_abs $tol_rel
|