mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +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.
26 lines
521 B
Plaintext
26 lines
521 B
Plaintext
puts "========"
|
|
puts "0029787: Visualization - Avoid in presentation edges of certain continuity class"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload MODELING VISUALIZATION
|
|
|
|
vclear
|
|
vinit View1
|
|
vsetcolorbg 255 255 255
|
|
|
|
psphere s1 1
|
|
psphere s2 1
|
|
psphere s3 1
|
|
ttranslate s2 4 0 0
|
|
ttranslate s3 8 0 0
|
|
|
|
vdisplay -dispMode 0 s1
|
|
vdisplay -dispMode 1 s2 s3
|
|
vfit
|
|
|
|
vaspects s2 -setFaceBoundaryDraw 1 -setFaceBoundaryColor RED
|
|
vaspects s3 -setFaceBoundaryDraw 1 -setFaceBoundaryColor RED -setMostContinuity c2
|
|
|
|
vdump $::imagedir/${::casename}.png
|