hou.dop module

DOP related functions.

Functions

dataTypes()tuple of hou.DopDataType

Not implemented yet

Return a tuple of all the hou.DopDataType objects. See hou.DopDataType for more information.

findDataType(name)hou.DopDataType or None

Not implemented yet

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 or None

Return the DOP network node that contains the script solver DOP that is current running, or None if not script solver is running. You would call this function from a script solver DOP.

scriptSolverObjects()tuple of 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.