We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5216cf2 commit cbb886eCopy full SHA for cbb886e
1 file changed
kratos.gid/scripts/Mesh.tcl
@@ -82,6 +82,18 @@ proc Mesh::AddPointElementsIfNeeded {} {
82
set group_nodes [dict get $condition_groups $condid]
83
foreach node_tdom $group_nodes {
84
set group_id [get_domnode_attribute $node_tdom n]
85
+
86
+ # if group ov is point or condition ov is point
87
+ set ov ""
88
+ if {[$node_tdom hasAttribute ov]} {
89
+ set ov [get_domnode_attribute $node_tdom ov]
90
+ } else {
91
+ set ov [get_domnode_attribute [$node_tdom parent] ov]
92
+ }
93
+ if { $ov ne "Point" && $ov ne "point" } {
94
+ continue
95
96
97
# Get the goodname of the group
98
set group_id [write::GetWriteGroupName $group_id]
99
0 commit comments