mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-30 12:14:08 +03:00
Fixed drawing length dimension for two vertices in Draw Fixed exception when trying to draw length dimension for face-point or point-face Fixed drawing length dimension for edge-vertex/point and vertex/point-edge
25 lines
451 B
Plaintext
25 lines
451 B
Plaintext
puts "============"
|
|
puts "CR26035"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Exception when trying to draw dimension between face and point
|
|
#######################################################################
|
|
|
|
vinit View1
|
|
vclear
|
|
vaxo
|
|
|
|
box b -10 -10 -10 20 20 20
|
|
explode b F
|
|
vdisplay b_1
|
|
|
|
vpoint p 10 0 0
|
|
|
|
catch {vdimension len -length -shapes b_1 p -plane zox}
|
|
|
|
vfit
|
|
|
|
set only_screen 1
|
|
|