mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
A new Shaded presentation flag configured through Datum aspect (NOT as usual Display Mode). Creation of auxiliary Axis/Point/Plane presentations in Trihedron presentation is removed. 'vtrihedron' DRAW command to change parameters of trihedron is extended to cover whole functionality of AIS_Trihedron. The following classes are redesignede: AIS_Trihedron, Prs3d_DatumAspect. The followin enumermations are created to manage properties of trihedron: Prs3d_DatumAttribute, Prs3d/Prs3d_DatumAxes, Prs3d_DatumMode
31 lines
568 B
Plaintext
31 lines
568 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 on
|
|
vzoom 4
|
|
|
|
vdump $anImage1
|
|
|
|
set anX 204
|
|
set anY 100
|
|
|
|
vselect $anX $anY
|
|
|
|
vdump $anImage2
|
|
|
|
vselmode 2 1
|
|
|
|
vselect $anX $anY
|
|
|
|
vdump $anImage3 |