1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
emv 53a73fc1d1 0029683: Add functionality to make the TopoDS_Shape periodic in 3D space
Implementation of the new class *BOPAlgo_MakePeriodic* for making the shape periodic in 3D space.
Periodicity of the shape means that the shape can be repeated in any periodic direction any number of times without creation of the new geometry or splits.
The idea of this algorithm is to make the shape look similarly on the opposite sides or on the period bounds of periodic directions.
It does not mean that the opposite sides of the shape will be mirrored. It just means the the opposite sides of the shape should be split by each other and obtain the same geometry on opposite sides.
Such approach will allow repeating the shape, i.e. translating the copy of a shape on the period, without creation of new geometry because there will be no coinciding parts of different dimension.

Draw commands for the new algorithm:
* makeperiodic - makes the shape periodic in required directions;
* repeatshape - repeats the periodic shape in requested periodic direction;
* periodictwins - returns the periodic twins for the shape;
* clearrepetitions - clears all previous repetitions of the periodic shape.

Documentation & test cases for the algorithm.
2018-12-07 18:49:44 +03:00

81 lines
1.5 KiB
Plaintext

polyline p 0 0 0 10 0 0 10 0 10 5 0 10 5 0 5 0 0 5 0 0 0
mkplane f p
prism s f 0 5 0
# make the shape periodic
makeperiodic sp s -x 10 -z 10 -y 5
checkshape sp
checknbshapes sp -vertex 16 -edge 24 -wire 10 -face 10 -shell 1 -solid 1 -t
checkprops sp -s 350 -v 375
# get history of the operation
savehistory h
# check modification of the bottom and side faces
explode s f
modified m h s_1
checknbshapes m -vertex 6 -edge 7 -wire 2 -face 2 -t
explode m f
periodictwins t1 m_1
periodictwins t2 m_2
compound t1 t2 t
checknbshapes t -face 1 -t
explode s f
modified m h s_2
checknbshapes m -vertex 6 -edge 7 -wire 2 -face 2 -t
explode m f
periodictwins t1 m_1
periodictwins t2 m_2
compound t1 t2 t
checknbshapes t -face 1 -t
# repeat the shape
repeatshape res -x 1 -y 2
checkshape res
checknbshapes res -vertex 56 -edge 102 -wire 53 -face 53 -shell 6 -solid 6 -t
checkprops res -s 2100 -v 2250
# get repetition history
savehistory h
# get generations of bottom face
generated g h s_1
checkshape g
checknbshapes g -vertex 20 -edge 31 -wire 12 -face 12 -t
checkprops g -s 300
# get generations of the top face
generated g h s_3
checkshape g
checknbshapes g -vertex 16 -edge 20 -wire 6 -face 6 -t
checkprops g -s 150
foreach f [explode g f] {
periodictwins t $f
checkshape t
checknbshapes t -wire 11 -face 11 -t
checkprops t -s 275
}
# clear repetitions
clearrepetitions
savehistory h
# now generated for bottom face should be empty
if {![regexp "No shapes were generated from the shape." [generated g1 h s_1]]} {
puts "Error: history is not cleared"
}