mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. The partition operation allows splitting an arbitrary number of shapes of an arbitrary dimension by other arbitrary shapes. The algorithm has been implemented in the class BOPAlgo_Splitter. The API operator Splitter has been implemented in the class BRepAlgoAPI_Splitter. 2. The draw commands for usage the new algorithm have been implemented - bsplit and bapisplit. The commands are identical, but one uses the BOPAlgo_Splitter, the other uses BRepAlgoAPI_Splitter. Both commands should be used after Pave Filler is filled. 3. Test cases for the new algorithm. 4. Documentation has been updated. Small corrections.
32 lines
754 B
Plaintext
32 lines
754 B
Plaintext
puts "============"
|
|
puts "OCC26874"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Implementation of the Partition operator in OCCT
|
|
#######################################################################
|
|
|
|
# split shell by faces
|
|
restore [locate_data_file bug24558_Surface_3.brep] sh
|
|
|
|
restore [locate_data_file bug24558_Surface_1.brep] f1
|
|
restore [locate_data_file bug24558_Surface_2.brep] f2
|
|
restore [locate_data_file bug24558_Surface_4.brep] f3
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects sh
|
|
baddtools f1 f2 f3
|
|
bfillds
|
|
bsplit result
|
|
|
|
checkshape result
|
|
checknbshapes result -face 58
|
|
checkprops result -s 2997.83
|
|
|
|
smallview
|
|
don result
|
|
fit
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|