mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1) Remove duplicating presentation algorithms for shapes StdPrs_WFShape, StdPrs_WFDeflectionShape. 2) Rewrite Prs3d_WFShape to use deflection for non-triangulated shapes and rename it to StdPrs_WFShape. 3) Revise and correct references in code. 4) Rename StdPrs_ToolShadedShape to StdPrs_ToolTriangulatedShape (reused in StdPrs_WFShape, StdPrs_ShadedShape). 5) Add StdPrs_BndBox for drawing bounding box presentation. 6) Implemented on-triangulation isoline builder. 7) Add option -isoontriangulation to vaspects command to enable on-triangulation isoline builder for shape. 8) Drawer's maximum UV parameter value is taken into account in isolines calculation correctly. 9) Add option -setMaxParamValue to vaspects command to change drawer's maximum UV parameter value.
46 lines
1015 B
Plaintext
Executable File
46 lines
1015 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC129"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################################
|
|
# Object is not selectable in the Cascade Viewer
|
|
######################################################################################
|
|
|
|
set BugNumber OCC22129
|
|
|
|
cylinder c 0 0 1 10
|
|
trimv ct c -1e+9 1e+9
|
|
mkface ft ct
|
|
|
|
vinit
|
|
# change maximum uv parameter value in drawer to display
|
|
# isolines correctly
|
|
vaspects -defaults -setMaxParamValue 1e+9
|
|
vdisplay ft
|
|
|
|
set x1 207
|
|
set y1 184
|
|
set x2 222
|
|
set y2 175
|
|
|
|
vmoveto ${x1} ${y1}
|
|
checkcolor ${x1} ${y1} 0 1 1
|
|
|
|
vselect ${x1} ${y1}
|
|
checkcolor ${x1} ${y1} 0.8 0.8 0.8
|
|
|
|
vselect ${x2} ${y2}
|
|
checkcolor ${x1} ${y1} 1 1 0
|
|
|
|
# dump image, than restore default maximum parameter value
|
|
set aViewInfo [split [vviewlist long] "/"]
|
|
set aImgFile ${imagedir}/${casename}
|
|
foreach aStr $aViewInfo {
|
|
append aImgFile "_" [string trim $aStr]
|
|
}
|
|
append aImgFile ".png"
|
|
vdump $aImgFile
|
|
|
|
vaspects -defaults -setMaxParamValue 500000
|
|
vclose
|