mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Behaviour of command meshvectors is stable now. It shows default vector (0,0,1) for volume entity. Test cases for issue CR27905
25 lines
744 B
Plaintext
Executable File
25 lines
744 B
Plaintext
Executable File
puts "============"
|
|
puts "CR27905"
|
|
puts "============"
|
|
puts ""
|
|
##########################################################################################################
|
|
# Visualization - randomly directed arrows on test v3d mesh B7
|
|
##########################################################################################################
|
|
|
|
pload XSDRAW
|
|
|
|
vinit
|
|
vclear
|
|
|
|
mesh3delem m
|
|
vsetdispmode m 5
|
|
|
|
meshvectors m -mode elem -maxlen 10 -color green -arrowpart 0.5 -issipmle 0
|
|
vdump ${imagedir}/${test_image}_1.png
|
|
|
|
meshvectors m -mode elem -maxlen 10 -color green -arrowpart 0.5 -issipmle 0
|
|
vdump ${imagedir}/${test_image}_2.png
|
|
|
|
meshvectors m -mode elem -maxlen 10 -color green -arrowpart 0.5 -issipmle 0
|
|
vdump ${imagedir}/${test_image}_3.png
|