mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-07-20 12:45:50 +03:00
- added ToDrawLabels option to Prs3d_DatumAspect, by default it is set to true - AIS_Trihedron (uses DsgPrs_DatumPrs) and AIS_Axis: labels are drawn if ToDrawLabels option in the datum aspect is enabled
31 lines
565 B
Plaintext
31 lines
565 B
Plaintext
puts "================================================================"
|
|
puts "CR26754"
|
|
puts "Visualization - provide API to display AIS_Trihedron presentation without axes labels"
|
|
puts "================================================================"
|
|
puts ""
|
|
|
|
set anImage1 $imagedir/${casename}_1.png
|
|
set anImage2 $imagedir/${casename}_2.png
|
|
set anImage3 $imagedir/${casename}_3.png
|
|
|
|
vinit
|
|
vclear
|
|
vaxo
|
|
|
|
vtrihedron t -hidelabels
|
|
vzoom 4
|
|
|
|
vdump $anImage1
|
|
|
|
set anX 204
|
|
set anY 100
|
|
|
|
vselect $anX $anY
|
|
|
|
vdump $anImage2
|
|
|
|
vselmode 2 1
|
|
|
|
vselect $anX $anY
|
|
|
|
vdump $anImage3 |