mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Methods D0, D1, D2, D3, DN of the class GeomEvaluator_OffsetSurface are extended by additional tweak to compensate failure of normal calculation in degenerated points on triangular surfaces. If the point where normal has failed to calculate is located on parametric boundary of the base surface, one more attempt is made with the point shifted towards interior by Precision::PConfusion().
23 lines
684 B
Plaintext
23 lines
684 B
Plaintext
puts "========"
|
|
puts "OCC28112"
|
|
puts "========"
|
|
puts ""
|
|
####################################################################################
|
|
## Exception during offset computation
|
|
####################################################################################
|
|
|
|
restore [locate_data_file bug28112.brep] s
|
|
|
|
regexp {Mass +: +([-0-9.+eE]+)} [lprops s 1.e-4] full s_len
|
|
regexp {Mass +: +([-0-9.+eE]+)} [sprops s 1.e-4] full s_area
|
|
|
|
for {set i -5} {$i <= 5} {incr i} {
|
|
set offsetvalue [expr 6. * $i]
|
|
offsetshapesimple result s ${offsetvalue}
|
|
|
|
checkshape result
|
|
checkprops result -l ${s_len}
|
|
checkprops result -s ${s_area}
|
|
checknbshapes result -vertex 12 -edge 15 -face 3
|
|
}
|