mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
A new flag Prs3d_Drawer::FaceBoundaryUpperContinuity() has been introduced handled by StdPrs_ShadedShape::FillFaceBoundaries() method to exclude edges of higher continuity class (e.g. to skip seam edges). Draw Harness command vshowfaceboundary has been replaced by vaspects: > vaspects -setFaceBoundaryDraw 1 -setFaceBoundaryColor RED -setFaceBoundaryType DASH.
28 lines
657 B
Plaintext
28 lines
657 B
Plaintext
puts "========"
|
|
puts "OCC27083"
|
|
puts "Visualization, Ray Tracing - shape with visible face boundaries disappears after turning the ray-tracing on"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload VISUALIZATION MODELING
|
|
|
|
box b 1 1 1
|
|
|
|
vclear
|
|
vinit View1
|
|
|
|
vdisplay -noupdate -dispMode 1 b
|
|
vfit
|
|
vaspects b -setFaceBoundaryDraw 1 -setFaceBoundaryColor RED -setFaceBoundaryWidth 3
|
|
vraytrace 1
|
|
|
|
if {[vreadpixel 295 255 name] != "GOLDENROD4 0"} {
|
|
puts "ERROR: the box with boundary aspect set is not shown in ray-tracing mode!"
|
|
}
|
|
|
|
if {[vreadpixel 105 58 name] != "RED 1"} {
|
|
puts "ERROR: the box's boundaries are not shown in ray-tracing mode!"
|
|
}
|
|
|
|
vdump $imagedir/${casename}.png
|