1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
isk 404c893694 0028162: Draw Harness - eliminate usage of deprecated Local Context
Create a general draw command 'VRelation' and drop the old 'relation' commands.
Add test cases for new draw command "vrelation".
Add two new methods: Activate and Deactivate which activate/deactivate the given selection mode for all displayed objects.
Eliminate deprecated local context methods in ObjectCommands, QABugs.
Eliminate deprecated local context methods in mfc standard sample and qt samples.
2016-12-16 11:58:08 +03:00

38 lines
734 B
Plaintext

puts "===================================================================="
puts "OCC28162: Draw Harness - eliminate usage of deprecated Local Context"
puts "Select 2 edges or vertices"
puts "===================================================================="
vclear
vinit
box b 10 20 30
vdisplay b
vfit
set shift 1
# Create an identic relation from 2 edges.
#vremove rfaces
vselmode b 4 0
vselmode b 2 1
vselect 87 170
vselect 165 170 $shift
vrelation redgess -identic
vdump $imagedir/${casename}_edges.png
# Create an identic relation from 2 vertices.
vremove redges
vselmode b 2 0
vselmode b 1 1
vselect 160 130 170 140
vselect 240 0 250 10 $shift
vrelation rvertices -identic
vdump $imagedir/${casename}_vertices.png