29 |
Common.setActor(self) |
Common.setActor(self) |
30 |
Common.addActor(self) |
Common.addActor(self) |
31 |
|
|
32 |
""" |
|
33 |
class MapOnPlane(): |
from map import Map |
34 |
shows scalar data by color on a given plane |
from plane import Plane |
35 |
""" |
|
36 |
pass |
class MapOnPlane(Map, Plane): |
37 |
|
""" |
38 |
|
shows scalar data by color on a given plane |
39 |
|
""" |
40 |
|
|
41 |
|
def __init__(self, scene, data_collector): |
42 |
|
Common.__init__(self, scene, data_collector) |
43 |
|
|
44 |
|
Plane.__init__(self, scene, data_collector, |
45 |
|
"self.data_collector.getReader().GetOutput()") |
46 |
|
|
47 |
|
|
48 |
|
|