示例#1
0
 def __init__(self, geoInput=[], geoSampleInput=[], dataSampleInput=[], dataInInput=[], sampleType=MAX_FLT):
     if os.getenv('VR_PREPARE_DEBUG_RUN'):
         print("PartCuttingSurfaceVis.__init__")
     PartModuleVis.__init__(self,CuttingSurfaceComp, VIS_PLANE, self.__class__.__name__, geoInput, [], geoSampleInput, dataSampleInput, dataInInput, [], [], sampleType)
     PartColoredVis.__init__(self)
     PartInteractorVis.__init__(self, 1) # mode 1 means cuttingsurface interactor
     self.params = PartPlaneVisParams()
     self.__initBase()
示例#2
0
    def __init__(self):
        if os.getenv('VR_PREPARE_DEBUG_RUN'):
            print("PartTracerVis.__init__")

        PartModuleVis.__init__(self, TracerComp, VIS_STREAMLINE, self.__class__.__name__, ['meshIn'],['octtreesIn'],['SampleGeom'],['SampleData'],['dataIn'],['fieldIn'],['pointsIn'], USER_DEFINED)
        PartColoredVis.__init__(self)
        PartInteractorVis.__init__(self)

        self.params = PartStreamlineVisParams()
        self.__initBase()
        self.oldFreeStartPoints = ''
示例#3
0
    def __init__(self):
        if os.getenv('VR_PREPARE_DEBUG_RUN'):
            print("PartTracerVis.__init__")

        PartModuleVis.__init__(self, TracerComp, VIS_STREAMLINE,
                               self.__class__.__name__, ['meshIn'],
                               ['octtreesIn'], ['SampleGeom'], ['SampleData'],
                               ['dataIn'], ['fieldIn'], ['pointsIn'],
                               USER_DEFINED)
        PartColoredVis.__init__(self)
        PartInteractorVis.__init__(self)

        self.params = PartStreamlineVisParams()
        self.__initBase()
        self.oldFreeStartPoints = ''
示例#4
0
 def __init__(self,
              geoInput=[],
              geoSampleInput=[],
              dataSampleInput=[],
              dataInInput=[],
              sampleType=MAX_FLT):
     if os.getenv('VR_PREPARE_DEBUG_RUN'):
         print("PartCuttingSurfaceVis.__init__")
     PartModuleVis.__init__(self, CuttingSurfaceComp, VIS_PLANE,
                            self.__class__.__name__, geoInput, [],
                            geoSampleInput, dataSampleInput, dataInInput,
                            [], [], sampleType)
     PartColoredVis.__init__(self)
     PartInteractorVis.__init__(self,
                                1)  # mode 1 means cuttingsurface interactor
     self.params = PartPlaneVisParams()
     self.__initBase()
示例#5
0
 def __init__(self):
     PartModuleVis.__init__(self,Probe3D, VIS_POINTPROBING, self.__class__.__name__,['meshIn'],['gOcttreesIn'],[],[],['gdataIn'],[],[], 1, True, True)
     PartColoredVis.__init__(self)
     PartInteractorVis.__init__(self)
     self.params = PartPointProbingVisParams()
     self.__initBase()