mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
When collecting the points to build plane use the points on the curve instead of poles (in case of BSpline and Bezier curves). Side effect changes: Changes in Geom2dHatch_Elements are to increase the chance of correct 2d classification (by the means of Geom2dHatch_Classifier) by taking more than just one point on the edge to construct the classification ray and by checking if this ray is not tangent to the edge itself.
23 lines
432 B
Plaintext
23 lines
432 B
Plaintext
puts "============="
|
|
puts "0030878: Modeling Algorithms - BRepLib_MakeFace produces face with abnormal surface"
|
|
puts "============="
|
|
|
|
brestore [locate_data_file bug30878_wire.brep] w
|
|
|
|
# build the face on the original wire
|
|
mkplane result w 1
|
|
|
|
checkprops result -s 69458.1
|
|
|
|
# reduce the tolerance
|
|
settolerance w 0.7
|
|
|
|
# build face again
|
|
mkplane result w 1
|
|
|
|
checkprops result -s 69458.1
|
|
|
|
set MaxFTol 0.7
|
|
set MaxETol 0.7
|
|
set MaxVTol 0.7
|