hou.DopSimulation class
Methods
dopNetNode(self)→ hou.NodefindAllData(self, data_spec)→ tuple of hou.DopDatafindAllObjects(self, obj_spec)→ tuple of hou.DopDatafindAllRelationships(self, rel_spec)→ tuple of hou.DopDatafindData(self, data_spec)→ hou.DopDatafindObject(self, obj_spec)→ hou.DopDatafindRelationship(self, rel_spec)→ hou.DopDataobjects(self)→ tuple of hou.DopData-
Returns a list of all objects in the simulation.
You cannot index into this list using the object ID (see hou.DopObject.objid). To create a dictionary mapping object IDs to hou.DopObjects, do this:
map = dict([(obj.objid(), obj) for obj in sim.objects()])
relationships(self)→ tuple of hou.DopDatas