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
26 lines
429 B
Plaintext
26 lines
429 B
Plaintext
puts "============"
|
|
puts "CR26035"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Drawing dimension between point and edge
|
|
#######################################################################
|
|
|
|
vinit View1
|
|
vclear
|
|
vaxo
|
|
|
|
vertex v1 10 -10 0
|
|
vertex v2 10 10 0
|
|
edge e v1 v2
|
|
vdisplay e
|
|
|
|
vpoint p 10 0 10
|
|
|
|
vdimension len -length -shapes p e -plane yoz
|
|
|
|
vfit
|
|
|
|
set only_screen 1
|
|
|