1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
puts "========"
puts "OCC25398"
puts "========"
puts ""
######################################################
# Provide shape proximity detector
######################################################
psphere s 10
tclean s
incmesh s 0.001
pcone c 5 20 30
tclean c
incmesh c 0.001
proximity s c -tol 0.01 -profile
checknbshapes s_overlapped -vertex 2 -edge 3 -wire 1 -face 1 -shell 0 -solid 0 -compsolid 0 -compound 1 -shape 8 -t -m "Overlapped part of shere"
checknbshapes c_overlapped -vertex 2 -edge 3 -wire 1 -face 1 -shell 0 -solid 0 -compsolid 0 -compound 1 -shape 8 -t -m "Overlapped part of shere"
vinit
vdisplay s_overlapped
vdisplay c_overlapped
vfit
set only_screen 1
|