mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
The methods HasAncestorFaceOn1() and HasAncestorFaceOn1() return true only in the case when their first argument is the new edge built from intersection curve and not an existing common edge. PCurveOn1() and PCurveOn2() have been removed. Methods PCurveOn1() and PCurveOn2() removed from BRepAlgo_Section class. Added test case bugs/modalg_5/bug23881
33 lines
917 B
Plaintext
33 lines
917 B
Plaintext
puts "============"
|
|
puts "OCC23881"
|
|
puts "============"
|
|
puts ""
|
|
############################################################################
|
|
# BRepAlgoAPI_Section HasAnsectorFaceOn1 returned False on the boundary
|
|
############################################################################
|
|
|
|
polyline w1 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0
|
|
polyline w2 0 1 0 1 1 0 1 2 0 0 2 0 0 1 0
|
|
mkplane f1 w1
|
|
mkplane f2 w2
|
|
sewing s1 0.0001 f1 f2
|
|
|
|
plane pl 0 1 0 0 1 0
|
|
mkface f3 pl
|
|
|
|
bsection r s1 f3
|
|
|
|
# check that section edge (r) is the edge from original shape (s1)
|
|
compound r s1 c
|
|
if { ! [regexp {EDGE\s*:\s*([0-9]+)} [nbshapes s1] str nbedges_s1] ||
|
|
! [regexp {EDGE\s*:\s*([0-9]+)} [nbshapes c ] str nbedges_c] } {
|
|
error "Could not get number of edges from resulting shapes"
|
|
}
|
|
|
|
if { $nbedges_s1 != $nbedges_c } {
|
|
puts "Error: section does not share common edge with original shape"
|
|
}
|
|
|
|
renamevar r result
|
|
set 2dviewer 0
|