hou.dop
module
DOP related functions.
Functions
dataTypes()→tupleof hou.DopDataType-
Return a tuple of all the hou.DopDataType objects. See hou.DopDataType for more information.
findDataType(name)→ hou.DopDataType orNone-
Return the hou.DopDataType object corresponding to the given DOP data type name.
>>> hou.dop.findDataType("SIM_Geometry") <hou.DopDataType SIM_Geometry>
scriptSolverNetwork()→ hou.DopNetNode orNone-
Return the DOP network node that contains the script solver DOP that is current running, or
Noneif not script solver is running. You would call this function from a script solver DOP. scriptSolverObjects()→tupleof hou.DopObject-
Return a tuple of DOP objects being solved by the current script solver DOP. If no script solver is running, returns an empty tuple.
scriptSolverTimestepSize()→float-
Return the timestep size for the script solver that is currenting running, or 0.0 if no script solver is running.