コード例 #1
0
 def __init__(self):
     """Creates a new instance of ShrinkToBounds."""
     NimbleScriptBase.__init__(self)
     self.grow = False
     self.x = None
     self.y = None
     self.z = None
コード例 #2
0
 def __init__(self):
     """Creates a new instance of ShrinkToBounds."""
     NimbleScriptBase.__init__(self)
     self.grow = False
     self.x = None
     self.y = None
     self.z = None
コード例 #3
0
    def __init__(self):
        """Creates a new instance of RandomBoxes."""
        NimbleScriptBase.__init__(self)

        # Load the elixir general plugin if not already loaded
        elixir.loadGeneralPlugin()

        self._size = 1.0
        self._padding = 0.0
        self._meshPointNode = None
コード例 #4
0
ファイル: RandomBoxes.py プロジェクト: josephkirk/Nimble
    def __init__(self):
        """Creates a new instance of RandomBoxes."""
        NimbleScriptBase.__init__(self)

        # Load the elixir general plugin if not already loaded
        elixir.loadGeneralPlugin()

        self._size = 1.0
        self._padding = 0.0
        self._meshPointNode = None
コード例 #5
0
ファイル: ExtractMultiple.py プロジェクト: sernst/Nimble
 def __init__(self):
     """Creates a new instance of ExtractMultiple."""
     NimbleScriptBase.__init__(self)
コード例 #6
0
 def __init__(self):
     """Creates a new instance of EchoStatus."""
     NimbleScriptBase.__init__(self)
コード例 #7
0
ファイル: EchoStatus.py プロジェクト: josephkirk/Nimble
 def __init__(self):
     """Creates a new instance of EchoStatus."""
     NimbleScriptBase.__init__(self)
コード例 #8
0
 def __init__(self):
     """Creates a new instance of ExtractMultiple."""
     NimbleScriptBase.__init__(self)
コード例 #9
0
 def __init__(self):
     NimbleScriptBase.__init__(self)
コード例 #10
0
ファイル: CreateSpheres.py プロジェクト: josephkirk/Nimble
 def __init__(self):
     """ Creates a new instance of CreateSpheres. As a NimbleScriptBase derived class the
         constructor must not take any arguments, as nothing is passed by Nimble when the
         class is used. Instead arguments are assigned to the class later in its life-cycle
         just prior to calling the run command. """
     NimbleScriptBase.__init__(self)
コード例 #11
0
 def __init__(self):
     """ Creates a new instance of CreateSpheres. As a NimbleScriptBase derived class the
         constructor must not take any arguments, as nothing is passed by Nimble when the
         class is used. Instead arguments are assigned to the class later in its life-cycle
         just prior to calling the run command. """
     NimbleScriptBase.__init__(self)