mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
16 lines
413 B
Plaintext
16 lines
413 B
Plaintext
box b 10 10 10
|
|
|
|
# make the box periodic
|
|
makeperiodic bp b -x 5 -trim 2 -y 8 -trim 1 -z 12 -trim -1
|
|
|
|
checkshape bp
|
|
checknbshapes bp -vertex 8 -edge 12 -wire 6 -face 6 -shell 1 -solid 1 -t
|
|
checkprops bp -s 340 -v 400
|
|
|
|
# repeat the shape
|
|
repeatshape result -x 5 -y 5 -z 5
|
|
|
|
checkshape result
|
|
checknbshapes result -vertex 588 -edge 1302 -wire 936 -face 936 -shell 216 -solid 216 -t
|
|
checkprops result -s 73440 -v 86400
|