mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
XShow and XDisplay XDE require VISUALIZATION for correct work. In some scenario DRAWEXE can generate a duplicates of the internal static singletons. This means each dynamic library will have their own instance of the static singleton. Update all direct library loading to use the XDE plugin mechanism. This will ensure that the XDE plugin is loaded only once and that the correct instance is used. Originally issue is reproduced only Linux with dlopen with "RTLD_LAZY". Can be resolved additionally adding "RTLD_LAZY | RTLD_GLOBAL" for dlopen
31 lines
700 B
Plaintext
31 lines
700 B
Plaintext
puts "========"
|
|
puts "0029303: Data Exchange - add RWObj_CafWriter tool for wavefront OBJ file"
|
|
puts "Write as1 STEP model into OBJ file"
|
|
puts "========"
|
|
|
|
pload VISUALIZATION XDE OCAF MODELING
|
|
Close D -silent
|
|
Close D1 -silent
|
|
ReadStep D1 [locate_data_file as1-oc-214-mat.stp]
|
|
XGetOneShape ss D1
|
|
incmesh ss 1.0
|
|
|
|
set aTmpObjBase "${imagedir}/${casename}_tmp"
|
|
set aTmpObj "${aTmpObjBase}.obj"
|
|
lappend occ_tmp_files $aTmpObj
|
|
lappend occ_tmp_files "${aTmpObjBase}.mtl"
|
|
lappend occ_tmp_files "${aTmpObjBase}_textures"
|
|
|
|
WriteObj D1 "$aTmpObj"
|
|
|
|
ReadObj D "$aTmpObj"
|
|
XGetOneShape s D
|
|
checknbshapes s -face 18 -compound 2
|
|
|
|
vclear
|
|
vinit View1
|
|
XDisplay -dispMode 1 D
|
|
vaxo
|
|
vfit
|
|
vdump ${imagedir}/${casename}.png
|