1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_6/bug26525_3
azv 6b84c3f7db 0026252: GeomAdaptor_Surface should use inner adaptor to calculate values of complex surfaces
* Implement GeomEvaluator package
* Inject evaluators to GeomAdaptor_Surface to calculate values of complex surfaces
* Inject evaluators to Geom_Surface classes to calculate values for offset surfaces, surfaces of revolution and surfaces of extrusion
* Move Adaptor3d_SurfaceOfLinearExtrusion and Adaptor3d_SurfaceOfRevolution to GeomAdaptor and unify calculation of their values and derivatives
* Code optimizations
* Update test cases

Update of test-cases according to the new behavior
2015-11-19 14:50:54 +03:00

53 lines
1.4 KiB
Plaintext

puts "================"
puts "OCC26525"
puts "================"
puts ""
#######################################################################
# Wrong result obtained by curve / surface intersection algorithm.
#######################################################################
pload QAcommands
restore [locate_data_file bug26525_a.brep] b1
restore [locate_data_file bug26525_b.brep] b2
mksurface sb1 b1
trimv sb1t sb1 -30000 30000
mkface b1t sb1t
explode b2 e
# Case 2. The curve is from the edge: b2_1
# 2.1 The face b1 is based on untrimmed surface
set log [OCC26525 p b2_1 b1]
regexp {([-0-9]+)} $log full Number
if { $Number == 2} {
set tol_abs 0.0001
set tol_rel 0.01
regexp {point p_1 +([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+)} $log full x1 y1 z1
set expected_x1 43.1172
set expected_y1 -17.16
set expected_z1 82.6048
checkreal "x1" ${x1} ${expected_x1} ${tol_abs} ${tol_rel}
checkreal "y1" ${y1} ${expected_y1} ${tol_abs} ${tol_rel}
checkreal "z1" ${z1} ${expected_z1} ${tol_abs} ${tol_rel}
regexp {point p_2 +([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+)} $log full x2 y2 z2
set expected_x2 39.0504
set expected_y2 -12.8696
set expected_z2 82.6099
checkreal "x2" ${x2} ${expected_x2} ${tol_abs} ${tol_rel}
checkreal "y2" ${y2} ${expected_y2} ${tol_abs} ${tol_rel}
checkreal "z2" ${z2} ${expected_z2} ${tol_abs} ${tol_rel}
} else {
puts "Error: Bad Number of intersection points"
}