1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/modalg_5/bug24973
pkv f284355851 0024973: Incorrect PCurve construction
class: BOPTools_AlgoTools2D
method:
void BOPTools_AlgoTools2D::MakePCurveOnFace
  (const TopoDS_Face& aF,
   const Handle(Geom_Curve)& aC3D,
   const Standard_Real aFirst,
   const Standard_Real aLast,
   Handle(Geom2d_Curve)& aC2D,
   Standard_Real& TolReached2d)
has been modified to provide the conformity with the location of the surface

Test case for issue CR24973
2014-06-05 14:22:21 +04:00

27 lines
527 B
Plaintext
Executable File

puts "============"
puts "OCC24973"
puts "============"
puts ""
######################################################
# Incorrect PCurve construction
######################################################
restore [locate_data_file bug24973_Face.brep] f
pcurve f
explode f e
tcopy f_9 e
bhaspc e f do
mk2dcurve c e f
to3d c3d c
mkedge e c3d
set info [bopargcheck e #F]
if { [regexp "to be valid for BOP" ${info}] == 1 } {
puts "OK : Created curve is correct"
} else {
puts "Error : Created curve is not correct"
}