mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
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.
31 lines
629 B
Plaintext
31 lines
629 B
Plaintext
puts "===================================================================="
|
|
puts "OCC28162: Draw Harness - eliminate usage of deprecated Local Context"
|
|
puts "Select 1 or 2 circled edges"
|
|
puts "===================================================================="
|
|
|
|
vclear
|
|
vinit
|
|
|
|
pcylinder c 15 30
|
|
vdisplay c
|
|
vfit
|
|
|
|
# Create relation from 1 selected circled edge.
|
|
vselmode c 2 1
|
|
vselect 205 174
|
|
|
|
vrelation r1 -equalradius
|
|
|
|
vdump $imagedir/${casename}_1.png
|
|
|
|
# Create relation from 2 selected circled edges.
|
|
vremove r1
|
|
|
|
vselect 205 377
|
|
|
|
set shift 1
|
|
vselect 205 174 $shift
|
|
|
|
vrelation r2 -equalradius
|
|
|
|
vdump $imagedir/${casename}_2.png |