Пример #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
    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
 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
 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
 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)