You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
384 B
14 lines
384 B
2 years ago
|
package require -exact vtkio 5.0
|
||
|
package require -exact vtkrendering 5.0
|
||
|
|
||
|
if {[info commands ::vtk::init::require_package] != ""} {
|
||
|
if {[::vtk::init::require_package vtkParallelTCL 5.0]} {
|
||
|
package provide vtkparallel 5.0
|
||
|
}
|
||
|
} else {
|
||
|
if {[info commands vtkParallelFactory] != "" ||
|
||
|
[::vtk::load_component vtkParallelTCL] == ""} {
|
||
|
package provide vtkparallel 5.0
|
||
|
}
|
||
|
}
|