mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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
27 lines
527 B
Plaintext
Executable File
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"
|
|
}
|