mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
The algorithm that builds outlines ("silhouettes") makes an outline in 2d parametric space of the surface starting from some previously detected point where normal is orthogonal to direction of view. So, the surface is previously discretized into (m*n) sample points and some of them become starting points for future outlines. If the surface has non-uniform parametrization and/or some local extremums of curvature, the outlines can not be built without breaks, so there are several groups of consequent outlines in this case. Unfortunately, it leads to the situation when current number of sample points becomes insufficient to build all the parts of outlines. The idea is to detect the "holes" between already constructed parts of outlines and then complete the construction. New auxiliary draw command for testing of HLR. Correction according to the remarks. Update of test case according to the developer's directive
27 lines
498 B
Plaintext
27 lines
498 B
Plaintext
puts "============"
|
|
puts "OCC27720"
|
|
puts "============"
|
|
puts ""
|
|
######################################################
|
|
# HLRBrep_Algo BSpline missing edges
|
|
######################################################
|
|
|
|
pload QAcommands
|
|
|
|
restore [locate_data_file bug27720_BSpline.brep] a
|
|
|
|
set viewname "top"
|
|
|
|
top
|
|
clear
|
|
|
|
OCC27341 result a ${viewname}
|
|
build3d result
|
|
|
|
fit
|
|
|
|
checkprops result -l 0.980943
|
|
checknbshapes result -vertex 58 -edge 29
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|