mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
27 lines
727 B
Plaintext
27 lines
727 B
Plaintext
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
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|