mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0032422: Mesh - Weird rendering 0029641: Mesher produce 'bad' result for extruded spline with given deviation coefficient Added method BRepMesh_NURBSRangeSplitter::getUndefinedInterval() intended to compute checkpoint parameters for those NURBS surfaces which have no intervals at all. In this case number of poles is used to produce artificial regular grid which can be refined further. Add at least one midpoint for surfaces with one interval and only two poles. Added BRepMesh_ExtrusionRangeSplitter and BRepMesh_UndefinedRangeSplitter derivatives from BRepMesh_NURBSRangeSplitter intended to handle special cases of extrusion surfaces and general surfaces with undefined parameters.
34 lines
624 B
Plaintext
Executable File
34 lines
624 B
Plaintext
Executable File
puts "========================"
|
|
puts " BUC60977 "
|
|
puts " OCC358 "
|
|
puts "========================"
|
|
#####
|
|
puts "The helical pipe is not shaded in AISViewer"
|
|
#####
|
|
|
|
if { [regexp {Windows} [dversion]] } {
|
|
set tri_n 19922
|
|
set nod_n 10395
|
|
} else {
|
|
set tri_n 19882
|
|
set nod_n 10375
|
|
}
|
|
|
|
restore [locate_data_file OCC358a.brep] f
|
|
checkshape f
|
|
|
|
restore [locate_data_file OCC358b.brep] w
|
|
checkshape w
|
|
|
|
pipe result w f
|
|
|
|
vinit
|
|
vdisplay result
|
|
vfit
|
|
vsetdispmode result 1
|
|
|
|
checktrinfo result -tri $tri_n -nod $nod_n
|
|
checkprops result -s 24861.2
|
|
checkshape result
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|