ifcopenshell.api.owner.remove_actor

Module Contents

ifcopenshell.api.owner.remove_actor.remove_actor(file, actor=None) None

Removes an actor

Parameters:

actor (ifcopenshell.entity_instance) – The IfcActor to remove.

Returns:

None

Return type:

None

Example:

# Setup an organisation with a single role
organisation = ifcopenshell.api.run("owner.add_organisation", model,
    identification="AWB", name="Architects Without Ballpens")
role = ifcopenshell.api.run("owner.add_role", model, assigned_object=organisation)
ifcopenshell.api.run("owner.edit_role", model, role=role, attributes={"Role": "ARCHITECT"})

# Assign that organisation to a newly created actor
actor = ifcopenshell.api.run("owner.add_actor", model, actor=organisation)

# Actually we need ballpens on this project
ifcopenshell.api.run("owner.remove_actor", model, actor=actor)