File: vtkvmtk.py

package info (click to toggle)
vmtk 1.3%2Bdfsg-2.3
  • links: PTS, VCS
  • area: non-free
  • in suites: buster
  • size: 8,932 kB
  • sloc: cpp: 82,947; ansic: 31,817; python: 21,462; perl: 381; makefile: 93; ruby: 41; sh: 19
file content (21 lines) | stat: -rw-r--r-- 517 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
""" This module loads all the classes from the vtkVmtk library into its
namespace.  This is a required module."""

import os
import vtk

from vtkvmtkCommonPython import *
from vtkvmtkComputationalGeometryPython import *
from vtkvmtkDifferentialGeometryPython import *
from vtkvmtkIOPython import *
from vtkvmtkMiscPython import *
try:
  from vtkvmtkRenderingPython import *
except:
  pass
from vtkvmtkSegmentationPython import *
from vtkvmtkITKPython import *
try:
  from vtkvmtkContribPython import *
except:
  pass