mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
DCAF require VISUALIZATION for correct work. In some scenario DRAWEXE can generate a dublicates 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 DCAF plugin mechanism. This will ensure that the DCAF 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
26 lines
717 B
Plaintext
26 lines
717 B
Plaintext
puts "============================================================================"
|
|
puts "0030779: Data Exchange - Problems with located subshapes in expand compounds"
|
|
puts "============================================================================"
|
|
puts ""
|
|
|
|
pload OCAF
|
|
|
|
XOpen [locate_data_file bug30779.xbf] D
|
|
XExpand D 1
|
|
|
|
# check model structure after expand
|
|
set result [XGetTopLevelShapes D]
|
|
if {$result != "0:1:1:1 0:1:1:2 0:1:1:3 "} {
|
|
puts "Error: wrong result of Expand compounds."
|
|
}
|
|
|
|
# check colors of subshapes
|
|
for {set i 1} {$i <= 4} {incr i} {
|
|
set sublabel 0:1:1:3:$i
|
|
set color [XGetShapeColor D $sublabel]
|
|
if {$color != "GRAY88"} { puts "Error: wrong color after expand compounds." }
|
|
}
|
|
|
|
Close D
|
|
|