mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
draw_test_harness.md - description of new options in Draw commands AppDef_BSplineCompute.hxx, BRepApprox_TheComputeLineOfApprox.hxx, GeomInt_TheComputeLineOfWLApprox.hxx, Approx_BSplComputeLine.gxx - implementation of method SetPeriodic(...) and implementation periodic boundary conditions for multiline in order to get periodic multicurve. GeomAPI_PointsToBSplineSurface.hxx, GeomAPI_PointsToBSplineSurface.cxx - adding new parameter for methods Init(...) and Interpolate(...), implementation of building periodic tangents for first and last AppDef_MultiPointConstraint of multiline for U direction of surface. GeometryTest_APICommands.cxx - implementation of new functionality in Draw command surfapp and surfint GeomFill_NSections.cxx Fixing problem with bugs modalg_3 bug606_2
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
puts "============"
|
|
puts "OCC26841"
|
|
puts "============"
|
|
puts ""
|
|
###############################
|
|
## Wrong result obtained by intersection algorithm.
|
|
###############################
|
|
|
|
restore [locate_data_file bug26841c1-prism.brep] p1
|
|
restore [locate_data_file bug26841c1-deck.brep] a1
|
|
|
|
bsection result a1 p1 -n2d2
|
|
|
|
smallview
|
|
donly result
|
|
fit
|
|
display a1 p1
|
|
|
|
set nbshapes_expected "
|
|
Number of shapes in shape
|
|
VERTEX : 5
|
|
EDGE : 5
|
|
WIRE : 0
|
|
FACE : 0
|
|
SHELL : 0
|
|
SOLID : 0
|
|
COMPSOLID : 0
|
|
COMPOUND : 1
|
|
SHAPE : 11
|
|
"
|
|
|
|
checknbshapes result -ref ${nbshapes_expected} -t -m "SECTION"
|
|
|
|
regexp {Tolerance +MAX=([-0-9.+eE]+)} [tolerance result] full MaxTolerance
|
|
puts "MaxTolerance=$MaxTolerance"
|
|
|
|
set expected_MaxTolerance 5.0e-006
|
|
set tol_abs_MaxTolerance 0.0
|
|
set tol_rel_MaxTolerance 0.01
|
|
checkreal "MaxTolerance" ${MaxTolerance} ${expected_MaxTolerance} ${tol_abs_MaxTolerance} ${tol_rel_MaxTolerance}
|
|
|
|
set log [checksection result]
|
|
|
|
if { [string compare -nocase $log " nb alone Vertices : 0\n\n"] } {
|
|
puts "ERROR: the section is not closed"
|
|
} else {
|
|
puts "The section is OK"
|
|
}
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|