mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-09 18:50:54 +03:00
- Added function checkprops, set default tolerance parameter to 1.0e-4 - Using "area" instead of "square". - Options "-equal\notequal" isn't used together with "-s" in blend and offset test cases. - Correct regressions/differences/improvements and CPU problem (set props tolerance to 0.1) - Corrected test cases to use checkprops proc. - Correct image difference - Updated TODOs in test cases. - Updated test cases to get correct images of result shape
30 lines
732 B
Plaintext
30 lines
732 B
Plaintext
puts "============"
|
|
puts "OCC25232"
|
|
puts "============"
|
|
puts ""
|
|
#########################################################################
|
|
# Functionality to create solids from set of shapes
|
|
#########################################################################
|
|
|
|
cylinder cyl 10
|
|
trimv cyl cyl -20 20
|
|
mkface fcyl cyl
|
|
cone con 45 0
|
|
trimv con1 con 0 15
|
|
trimv con2 con -15 0
|
|
mkface fcon1 con1
|
|
mkface fcon2 con2
|
|
plane pl 0 0 15 0 0 1
|
|
mkface fp pl -15 15 -15 15
|
|
sphere sph 0 0 0 12
|
|
mkface fsph sph
|
|
|
|
mkvolume result fcyl fcon1 fcon2 fp fsph
|
|
# 7 solids created
|
|
|
|
checkprops result -s 6725.11
|
|
checkshape result
|
|
|
|
checknbshapes result -vertex 12 -edge 26 -wire 14 -face 14 -shell 7 -solid 7 -compsolid 0 -compound 1 -shape 81
|
|
set 2dviewer 1
|